@charset "ISO-8859-1";
.social-media {
    list-style: none;
    display: inline-flex;
    justify-content: center;
    margin: 0;
    padding: 0;
  }
  .social-media li {
    margin: 0 10px;
  }
  .social-media a {
    display: inline-block;
    background-color: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 20px;
    color: #555;
    transition: all 0.3s;
  }
  .social-media a:hover {
    background-color: #555;
    color: #fff;
  }