.main {
    width: 100%;
}

.banner {
    height: 88vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#jabara {
    animation: move 3000ms ease;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
    z-index: 1;
    position: relative;
    animation-delay: 1.6s;
    width: 250px;
    height: calc(250px * 0.585483871);
}

@keyframes move {
    from {
        transform: translate(0) rotate(0deg);
    }

    to {
        transform: translateX(950px) rotate(360deg);
    }
}

#uncover-text {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 0;
    margin-right: 550px;

}

@keyframes uncover {
    to {
        opacity: 100%;
    }
}

#uncover-text p {
    animation-delay: 2s;
    width: fit-content;
    margin: 0;
    font-size: 8rem;
    opacity: 0%;
    animation-name: uncover;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
}

.animation {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sticky-wrapper {
    position: relative;
    /* Height is N times the viewport height, where N is the number of sections */
    /* This gives us space to scroll through the sections */
    height: 352vh;
}

/* The element that sticks to the top while we scroll through the wrapper */
.sticky-content {
    position: sticky;
    top: 12vh;
    height: 88vh;
    width: 100%;
    overflow: hidden;
}

/* Styling for the individual sections that will blink */
.blink-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    /* Animation properties */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* The active class makes the section visible */
.blink-section.active {
    opacity: 1;
    visibility: visible;
}

#section-1, #section-4, #section-7 {
    background-color: oklch(86.114% 0.13272 135.127);
}

#section-2, #section-5, #section-8 {
    background-color: oklch(85.652% 0.07763 197.915);
}

#section-3, #section-6 {
    background-color: oklch(91.844% 0.13124 137.722);
}

.contentText {
    max-width: 40%;
    font-size: 2.5rem;
    text-wrap-mode: wrap;
    font-weight: 800;
}
.contentTextWide {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    max-width: 90%;
}

.green {
    color: #2A6601;
}

#section-5, #section-7, #section-8 {
    flex-direction: column;
}

#img1, #img2, #img4, #img5, #img8, #img9 {
    max-width: 30%;
}

.textSections {
    display: flex;
    justify-content: space-around;
    max-width: 90%;
    align-items: center;
}

.textSection {
    width: 45%;
}

.textSection h2 {
    font-size: 2rem;
    font-weight:800;
}

.textSection p {
    font-size: 1.3rem;
    font-weight: 700;
}
