body {
    background: #000;
    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;
  }
  #social-test h2 {
    color: #fff;
    font-family: Futura, "Trebuchet MS", Arial, sans-serif;
    font-weight: 100;
  }
  #social-test .social {
    padding-left: 0px;
  }
  #social-test li {
    color: rgba(167, 146, 129, 0.6);
    list-style-type: none;
    display: inline-flexbox;
    width: 50px;
    height: 50px;
    line-height: 50px;
    padding: 1%;
    border: 1px solid rgba(167, 146, 129, 0.4);
    cursor: pointer;
    margin-left: 45%;
    margin-bottom: 20px;
    transition: ease 0.1s;
  }
  #social-test li:hover {
    color: #a79281;
    border: 1px solid #a79281;
  }
  .social:hover > li {
    opacity: 0.5;
  }
  .social:hover > li:hover {
    opacity: 1;
  }
