*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body{
    
      background: linear-gradient(179deg, #66ff64, #64adff);
      background-size: 400% 400%;
      background-position: center;
      animation: gradient 15s ease infinite;
      height: 100vh;
  
      -webkit-animation: AnimationName 6s ease infinite;
      -moz-animation: AnimationName 6s ease infinite;
      animation: AnimationName 6s ease infinite;
  }
  
  @-webkit-keyframes AnimationName {
      0%{background-position:51% 0%}
      50%{background-position:50% 100%}
      100%{background-position:51% 0%}
  }
  @-moz-keyframes AnimationName {
      0%{background-position:51% 0%}
      50%{background-position:50% 100%}
      100%{background-position:51% 0%}
  }
  @keyframes AnimationName {
      0%{background-position:51% 0%}
      50%{background-position:50% 100%}
      100%{background-position:51% 0%}
  }
  
  h1{
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  span {
    width: 240px;
    height: 400px;
    margin-top: 10%;
  }
  img {
    display: flex;
    gap: 10px;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.5);
    transition: all 0.5s ease;
    cursor: pointer;
    
  }
  h3{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
  }
  h3 a{
    text-decoration: none;
    color: black;
    font-size: 20px;
  }