:root {
    --bs-font-sans-serif: "League Spartan", sans-serif;
}
.w-60 {
    width: 60%;
}

.btn-danger {
    --bs-btn-bg: #980303;
    --bs-btn-border-color: #980303;
}

.navbar-brand img{
    width: 280px;
}

.nav-item .nav-link {
  --bs-nav-link-font-weight: 700; /* Sets font weight to bold */
  --bs-nav-link-color: rgba(255, 255, 255, 1);
}

.anim-scroll-container {
    min-height: 300vh;
    /* Create a long scrollable area */
    position: relative;
}

#anim-scroll-container1 {
    height: 1000vh;
}

#anim-scroll-container2 {
    min-height: 300vh;
}

#imageSequenceCanvas {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
}

#imageSequenceCanvas2 {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
}

.text-overlays {
    position: relative;
    /* Allows text frames to be positioned within */
}

.text-frame {
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    /* Initially hidden */
    transition: opacity 0.5s ease-in-out;
    /* Smooth fade transition */
    pointer-events: none;
    /* Prevent text from blocking interactions */
}

.text-frame.active {
    opacity: 1;
}

#sce1-text1{
    top:auto;
    bottom: 10rem;
    left: 10rem;
    width: 50vw;
}

#sce1-text2{
    top: 8rem;
    left: auto;
    right: 6rem;
    width: 40vw;
}

#sce1-text3{
    top: 4rem;
    left: 5rem;
    width: 42vw;
}

#sce1-text4{
    top: 2rem;
    left: auto;
    right: 2rem;
    width: 27vw;
}

#sce2-text1{
    top: 22rem;
    left: auto;
    right: 6rem;
    width: 32vw;
}

.icon-square {
    width: 3rem;
    height: 3rem;
    border-radius: .75rem;
}

.min-vh-75 {
    min-height: 75vh;
}

.marquee-parent {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 50px;
  background: #560200;
  color: #fff;
}
.marquee-child {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100vw;
  /* width of your text div */
  height: 50px;
  /* height of your text div */
  position: absolute;
  animation: marquee 20s linear infinite; /* change 5s value to your desired speed */
  white-space: nowrap;
}
.marquee-child:hover {
  animation-play-state: paused;
  cursor: pointer;
}
.marquee-child li {
    display: inline-block;
}
@keyframes marquee {
  0% {
    left: 100%;
  }
  100% {
    left: -100vw /* same as your text width */
  }
}