  h1 {
    text-align: center;
  }
  
  .icon-links {
    gap: 120px; 
    display: flex;
    justify-content: center;
    padding: 85px 75px 75px;
    margin-top: 100px;
  }
  
  .social-logo {
    width: 150px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  
  .icon-link:hover .social-logo,
  .icon-link:focus .social-logo {
    transform: scale(1.5);
    opacity: 0.8;
  }
  
  @media screen and (max-width: 750px) and (min-width: 501px) {
    h1 {
      font-size: 1.75em;
    }

    .social-logo{
      width: 150px;
    }

    .icon-links {
      gap: 95px;
      display: grid;
      margin-top: 0;
    }
  }

 @media screen and (max-width: 500px) {
  h1 {
    font-size: 1.25em;
    padding: 5px;
  }

  .social-logo {
    width: 125px;
  }

  .icon-links {
    gap: 100px;
    display: grid;
    margin-top: 0;
  }
 }
  

 @keyframes bounceimage {
  from {
      transform: translateY(1.25em);
  }

  to {
      transform: translateY(-1.25em);
  }
}

@-webkit-keyframes bounceimage {
  from {
      transform: translateY(20px);
  }

  to {
      transform: translateY(-20px);
  }
}

.icon-link:hover {
  animation-duration: 0.5s;
  animation-name: bounceimage;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  -webkit-animation-duration: 0.5s;
  -webkit-animation-name: bounceimage;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
}