body, html{
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Sansation', sans-serif;
    overflow-x: auto;
    overflow-y: auto; /* This will keep the vertical scrollbar if necessary */
    scrollbar-width: thin; /* Set the width of the scrollbar */
    scrollbar-color: white #0C0D12; /* Set thumb color to white and track color to transparent */
  
    height: 100%; /* Locks viewport height */
    position: fixed; /* Prevents overscroll */
    width: 100%; /* Full width */
}

:root {
    --marquee-width: 90vh;
    --marquee-height: 6vw;
    --marquee-elements-displayed: 5;
    --marquee-element-width: calc(var(--marquee-width) / var(--marquee-elements-displayed));
    --marquee-animation-duration: calc(var(--marquee-elements) * 3s);
  }
  
  .marquee {
    width: var(--marquee-width);
    height: var(--marquee-height);
    color: #eee;
    overflow: hidden;
    position: relative;
  }
  
  .marquee:before, .marquee:after {
    position: absolute;
    top: 0;
    width: 10rem;
    height: 100%;
    content: "";
    z-index: 1;
  }
  .marquee:before {
    left: 0;
  }
  
  .marquee:after {
    right: 0;
  }
  
  .marquee-content {
    list-style: none;
    height: 100%;
    display: flex;
    animation: scrolling var(--marquee-animation-duration) linear infinite;
  }
  
  @keyframes scrolling {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-1 * var(--marquee-element-width) * var(--marquee-elements))); }
  }
  
  .marquee-content li {
    display: flex;
    justify-content: center;
    align-items: center;
    /* text-align: center; */
    flex-shrink: 0;
    margin: 0 1rem;
    width: calc(var(--marquee-element-width) - 2rem);
    max-height: 100%;
    font-size: calc(var(--marquee-height)*3/4); /* 5rem; */
    white-space: nowrap;
  }
  
  .marquee-content li img {
    width: 100%;
    height: 100%;
  }
  
  @media (max-width: 600px) {
    :root {
      --marquee-width: 80vw;
      --marquee-height: 8vh;
      --marquee-elements-displayed: 5;
    }
    .marquee:before, .marquee:after { width: 8vh; }
  }