  :root {
    --animTime: 20s
  }

  .roller {
    overflow: hidden;
    width: 100%;
    height: 200px;
  }

  .roller-track {
    display: flex;
    width: fit-content;
    overflow: visible;
    animation: scroll 30s linear infinite;
    height: 200px;
    transition: all ease 0.2s;
  }

  .item {
    flex: 0 0 auto;
    aspect-ratio: 16/9;
    height: 100%;
    width: auto;
    background-position: center center;
    background-size: cover;
  }

  .item .details {
    transition: all 0.2s ease;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    background-color: rgba(255, 255, 255, 0);
    opacity: 0%;
  }

  .item .details p {
    font-size: larger;
    font-family: 'Special Gothic Expanded One';
    color: rgb(255, 255, 255);
    text-align: center;
  }

  .item .details a {
    color: white;
    text-decoration: none;
    min-width: 70px;
    font-family: 'Special Gothic Expanded One';
    background-color: rgba(111, 0, 255, 0.568);
    border: solid;
    border-width: 1px;
    border-color: blueviolet;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    min-height: 30px;
  }

  .item:hover .details {
    opacity: 100%;
    -webkit-box-shadow: -4px 1px 67px 26px rgba(0, 0, 0, 0.61) inset !important;
    -moz-box-shadow: -4px 1px 67px 26px rgba(0, 0, 0, 0.61) inset !important;
    box-shadow: -4px 1px 67px 26px rgba(0, 0, 0, 0.61) inset;
  }

  .item img {
    height: 100%;
    width: auto;
  }

  @keyframes scroll {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-50%);
    }
  }