* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  background-color: #323b3a;
  color: #bebebe;
}

.social {
  padding: 24px;
}

@media only screen and (min-width: 768px) {
  .social {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 320px;
    grid-gap: 70px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-line-pack: center;
        align-content: center;
    min-height: 100vh;
    height: unset;
  }
}

.social__handles {
  height: 400px;
  -webkit-box-shadow: 15px 15px 25px 0 rgba(36, 41, 41, 0.6), -15px -15px 25px 0 rgba(255, 255, 255, 0.11);
          box-shadow: 15px 15px 25px 0 rgba(36, 41, 41, 0.6), -15px -15px 25px 0 rgba(255, 255, 255, 0.11);
  border-radius: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-bottom: 52px;
  color: #bebebe;
  text-decoration: none;
}

@media only screen and (min-width: 768px) {
  .social__handles {
    margin-bottom: 0;
    height: 100%;
  }
}

.social__handles:focus {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  outline: none;
}

@media only screen and (min-width: 1366px) {
  .social__handles:hover {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}

.social__img {
  width: 150px;
  height: 150px;
}

.social__title {
  font-size: 4.2rem;
  margin-top: 32px;
}
/*# sourceMappingURL=styles.css.map */