#skills {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 90vh;
}
  
  #skills h3 {
    font-size: clamp(1.5rem, 2.5vw, 3rem);
    text-align: center;
  }
  
  .wrapper {
    width: 90%;
    max-width: 1536px;
    margin-inline: auto;
    position: relative;
    height: 150px;
    margin-top: 1.5rem;
    overflow: hidden;
    mask-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 1) 20%,
      rgba(0, 0, 0, 1) 80%,
      rgba(0, 0, 0, 0)
    );
  }
  
  @keyframes scrollLeft {
    to {
      left: -200px;
    }
  }
  
  .item {
    position: absolute;
    left: max(calc(200px * 8), 100%);
    animation-name: scrollLeft;
    animation-duration: 30s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;

    padding: 15px;
    margin: 5px;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 15px;
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.22);
  }
  
  .item img {
    width: clamp(35px, 4vw, 64px);
    height: clamp(35px, 4vw, 64px);
  }
  
  .item1 {
    animation-delay: calc(30s / 16 * (16 - 1) * -1);
  }
  
  .item2 {
    animation-delay: calc(30s / 16 * (16 - 2) * -1);
  }
  
  .item3 {
    animation-delay: calc(30s / 16 * (16 - 3) * -1);
  }
  
  .item4 {
    animation-delay: calc(30s / 16 * (16 - 4) * -1);
  }
  
  .item5 {
    animation-delay: calc(30s / 16 * (16 - 5) * -1);
  }
  
  .item6 {
    animation-delay: calc(30s / 16 * (16 - 6) * -1);
  }
  
  .item7 {
    animation-delay: calc(30s / 16 * (16 - 7) * -1);
  }
  
  .item8 {
    animation-delay: calc(30s / 16 * (16 - 8) * -1);
  }
  
  .item9 {
    animation-delay: calc(30s / 16 * (16 - 9) * -1);
  }
  
  .item10 {
    animation-delay: calc(30s / 16 * (16 - 10) * -1);
  }
  
  .item11 {
    animation-delay: calc(30s / 16 * (16 - 11) * -1);
  }
  
  .item12 {
    animation-delay: calc(30s / 16 * (16 - 12) * -1);
  }

  .item13{
    animation-delay: calc(30s / 16 * (16 - 13) * -1);
  }

  .item14{
    animation-delay: calc(30s / 16 * (16 - 14) * -1);
  }

  .item15{
    animation-delay: calc(30s / 16 * (16 - 15) * -1);
  }

  .item16{
    animation-delay: calc(30s / 16 * (16 - 16) * -1);
  }