body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #0ff1ff;
    flex-direction: column;
    font-family: 'Montserrat', sans-serif;
    color: #111;
    height: 100vh;
}

.page-content {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        flex-direction: column;
}

.stripe {
    background-color: #87f8ff;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    width: 100%;
    overflow: hidden;
}

.logo img {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.text-section h1 {
    font-size: 3rem;
    font-weight: bold;
    padding: .4rem .8rem;
    background: linear-gradient(90deg, #11e268, #00f1ff, #003235);
    border-radius: .5rem;
}
.text-section p {
    font-size: 1.3rem;
    font-style: italic;
    color: #003235;
}



.scrolling-icons {
    background: #0ff1ff;
    width: 100%; 
    height: 100%;
    display: flex;
    justify-content: flex-start;
    animation: scroll 10s linear infinite;
}

.icon {
    width: 40px;
    height: 40px;
    margin: 10px;
}

@keyframes scroll {
    0% {
        transform: translateX(0); /* Start from the left */
    }
    50% {
        transform: translateX(-50%); /* Move to the right edge */
    }
    100% {
        transform: translateX(0); /* Move off-screen and reset */
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.curve {
    position: absolute;
    bottom: 0;
    width: 100%;
}

@media (max-width: 768px) {
    .text-section h1 {
        font-size: 2rem;
    }
}


@import url('https://fonts.googleapis.com/css?family=Montserrat');

.fab {
    font-size: 3rem;
}

:root {
  --marquee-width: 80vw;
  --marquee-height: 10vh;
  --marquee-elements: 30; 
  --marquee-elements-displayed: 8;
  --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);
  /* background-color: #00cad6; */
  color: #eee;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.marquee:before, .marquee:after {
  position: absolute;
  top: 0;
  width: 10rem;
  height: 100%;
  content: "";
  z-index: 1;
}

/* .marquee:before {
  left: 0;
  background: linear-gradient(to right, #111 0%, transparent 100%);
}
.marquee:after {
  right: 0;
  background: linear-gradient(to left, #111 0%, transparent 100%);
} */

.marquee-content {
  list-style: none;
  height: 100%;
  display: flex;
  animation: scrolling var(--marquee-animation-duration) linear infinite;
}

/* .marquee-content:hover {
  animation-play-state: paused;
} */

@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;
  width: var(--marquee-element-width);
  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) {
  html { font-size: 12px; }
  :root {
    --marquee-width: 100vw;
    --marquee-height: 16vh;
    --marquee-elements-displayed: 3;
  }
  .marquee:before, .marquee:after { width: 5rem; }
}