body {
  background-color: black;
  margin: 0px;
  padding: 0px;
}

.wrapper {
  padding-top: 150px;
}

.img-area {
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.img-area img {
  display: block;
  width: 100%;
  max-height: 200px;
  object-fit: contain;
  border-radius: 10px;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  transform: scaleX(0);
  transition: all 0.5s ease-in-out;
}

.img-area .overlay:hover {
  cursor: pointer;
}

.img-area:hover .overlay {
  transform: scaleX(1);
}

.socials {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.socials i {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 50%;
  font-size: 30px;
  font-weight: 600;
  background: #fff;
  color: #fff;
  margin-right: 6px;
  transform: translateY(40px);
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.content a {
  text-decoration: none;
  color: rgb(255, 255, 255);
}

.img-area:hover .socials i {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}

.img-area:hover .socials .fa-eye {
  transition-delay: 0s;
}

.img-area:hover .socials .fa-thumbs-up {
  transition-delay: 0.3s;
}

.content {
  text-align: center;
  margin-top: 1px;
  font-family: century gothic;
}

.border {
  border: 1px solid rgb(97, 96, 96);
  display: block;
  max-width: 100%;
  height: 320px !important;
  border-radius: 8px;
  margin: 0;
  margin-top: 10px;
  margin-bottom: 10px;
  box-shadow: 5px 5px 10px #888888;
}

.box i {
  text-align: left;
  font-size: 25px;
  color: rgb(36, 36, 231);
  margin-left: 20px;
  margin-bottom: 10px;
}

.content h4 {
  font-weight: 600;
}

h4 {
  color: white;
  text-align: center;
}

.box a {
  text-decoration: none;
  color: rgb(255, 255, 255);
  font-size: 20px;
  font-family: "ubuntu", century, "gothic";
}

.h5 {
  font-weight: 600;
  font-size: 50px;
  font-family: "ubuntu";
  color: white;
  text-align: center;
}

.content p {
  color: white;
  font-family: "ubuntu";
  font-size: 12px;
  text-align: left;
  margin-left: 20px;
}
