* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

body {
  font-family: "Varela Round", sans-serif;
  background: #e9e9e9;
}

.wrapper {
  display: flex;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 60vw;
  height: 50vh;
  margin-left: -30vw;
  margin-top: calc(-25vh - 2vh);
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.title {
  display: flex;
  height: 30vh;
  font-size: 15em;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #000000;
  gap: 24px;
}

.social {
  display: flex;
  height: 20vh;
  margin-top: 48px;
  flex-wrap: nowrap;
  justify-content: space-around;
  width: 100%;
}

.social_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;
  margin-bottom: 10px;
}

.social_img {
  display: flex;
  width: 100%;
  padding: 20px;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  border: 1px solid lightgray;
  border-radius: 6px;
  box-shadow: 8px 3px 8px darkgrey;
  transition: box-shadow 0.1s cubic-bezier(0.17, 0.91, 0.73, 0.33);
}

.social_img img {
  height: calc(20vh - 60px);
}

.social_img:hover {
  box-shadow: 1px 2px 2px darkgrey;
}

@media (max-width: 1200px) {
  .social {
    flex-wrap: wrap;
  }

  .social_box {
    width: calc(50% - 10px);
  }
}

@media (max-device-width: 750px) {
  .social {
    flex-wrap: wrap;
  }

  .title {
    font-size: 17em;
  }

  .social_img img {
    height: calc(20vw - 60px);
  }
}

@media (max-width: 750px) {
  .social {
    flex-wrap: wrap;
  }

  .title {
    font-size: 17em;
  }

  .social_img img {
    height: calc(20vw - 60px);
  }
}
