#main-container {
    width: 100%;
    min-width: 900px;
    height: 100vh;
}

@media (max-width: 900px) {
    #main-container {
        min-width: 100%;
    }
}

#scrolly {
    position: relative;
    background-color: transparent;
    padding: .1rem;
}

article {
    position: relative;
    padding: 0;
    max-width: 20rem;
    margin: 0 auto;
}

figure {
    position: -webkit-sticky;
    position: sticky;
    left: 0;
    width: 100%;
    height: 100vh; /* Ensure the figure takes full viewport height */
    margin: 0;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    background-color: transparent;
    z-index: 0;
    overflow: hidden; /* Ensure content doesn't overflow */
}

figure img, figure svg {

    width: 100%; /* Set width to 100% of the parent */
    height: 100%; /* Set height to 100% of the parent */
    display: block;
    margin: 0 auto;
    opacity: 1;
    transition: opacity 0.5s;
}


.step {
    margin: 0 auto 2rem auto;
    color: #fff;
    background-color: rgba(0, 0, 0, 0);
}
.step:first-of-type {
    margin-top: 0; /* Adjust this value as needed */
}

.step:last-child {
    margin-bottom: 0;
}

.step.is-active p {
    background-color: rgba(255, 255, 255, 0.9);;
    color: #3b3b3b;
}

.step p {
    text-align: center;
    padding: 1rem;
    font-size: 1rem;
    /* background-color: #3b3b3b; */
}
.red-text {
    color: red; 
    font-weight: bold;
}
p{
    color: #111313;
    font-family: "noto serif",serif;
    font-size: 16px;
    /* font-size: 1rem; */
    line-height: 1.3;
}
.twentyfive-text {
    color: #2b83ba; 
    font-weight: bold;
}
.fifty-text {
    color: #0de87d; 
    font-weight: bold;
}
.seventyfive-text {
    color: #fec980; 
    font-weight: bold;
}
.over-text {
    color: #d7191c; 
    font-weight: bold;
}
.scroll-icon {
    position: absolute;
    top: 50px; /* Adjust based on your design */
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: rgb(240, 6, 6); /* Adjust based on your design */
    animation: bounce 2s infinite;
}
.scroll-text {
    display: block;
    font-size: 1.5rem; /* Adjust size as needed */
    position: absolute;
    top: 20px;
    left: 50%;
    text-align: center;
    color: #dadada;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}