body {
    background-image: url(anime-moon-landscape.jpg);
    width: 100%;
    margin: 0 auto;
  }
  
  .center {
    display: table;
    width: 100%;
    height: 100vh;
  }
  
  #social-test {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    font-size: 30px;
    h2 {
      color:#2c2a2a;
      font-family: Futura, "Trebuchet MS", Arial, sans-serif;
      font-weight: 100;
    }
    .social {
      padding-left: 0px;
    }
    li {
      color: rgba(167, 146, 129, 0.6);
      list-style-type: none;
      display: inline-block;
      width: 50px;
      height: 50px;
      line-height: 50px;
      padding: 1%;
      border: 1px solid rgba(0, 0, 0, 0.676);
      cursor: pointer;
      margin-left: 10px;
      margin-bottom: 20px;
      transition: ease .3s;
      &:hover {
        color: #000;
        border: #000;
      }
    }
  }
  
  .social:hover > li {
    opacity: 0.5;
  }
  
  .social:hover > li:hover {
    opacity: 1;
  }
  h2{
    font-family: Arial, Helvetica, sans-serif;
  }
@media (max-width: 768px){
  #social-test{
    font-size: 2rem;
    padding: 1rem;
  .social{
    padding-left: 20px;
    text-align: center;
  }
   li{
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin: 5px;
  }
  } 
}