.about-p {
    font-size: 1.2em;
    color: var(--text-color);
    text-align: justify;
    margin: 20px 0;
}

/* .container {
    justify-content: center;
} */

/* SCROLLING TEXT ANIMATION STUFF */
@keyframes scrollUp {
    0% {
        top: 200%;
        color: rgba(127, 255, 212, 0);
    }
    10% {
        color: rgba(127, 255, 212, 1);
    }
    90% {
        color: rgba(127, 255, 212, 1);
    }
    100% {
        top: -200%;
        color: rgba(127, 255, 212, 0);
    }
}

@keyframes scrollDown {
    0% {
        top: -200%;
        color: rgba(127, 255, 212, 0);
    }
    10% {
        color: rgba(127, 255, 212, 1);
    }
    90% {
        color: rgba(127, 255, 212, 1);
    }
    100% {
        top: 200%;
        color: rgba(127, 255, 212, 0);
    }
}

.scrollingTextHeightControl {
    position: relative;
    width: 20px; /* Adjust based on your design */
    margin: 0;
    padding: 0;
}

.scrollingText {
    white-space: nowrap;
    writing-mode: vertical-rl;
    overflow: hidden;
    margin: -5px;
    padding: 0;
    color: rgba(127, 255, 212, 1);
    flex-shrink: 0;
    letter-spacing: 2px;
}

#scrollingTextContainer {
    width: 100%;
    max-width: 100vw;
    height: 100px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: top;
    overflow-x: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    
}

#scrollingTextContainerBottom {
    width: 100%;
    max-width: 100vw;
    height: 100px;
    display: flex;
    flex-direction: row;
    overflow-x: hidden;
    justify-content: center;
    align-items: flex-end;
    white-space: nowrap;
    box-sizing: border-box;
}
