.about-section {
    width: 100vw;
    height: 300vh;
    background-color: var(--brown-200);
}

.about-wrapper {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 32px;
    justify-content: center;
    align-items: center;
    text-wrap: balance;
}

.stars {
    font-family: 'KyivTypeSerif-Regular2';
    font-size: 3.6rem;
    line-height: 100%;
    text-align: center;
    max-width: 80%;
    color: var(--white);
}

.about-text {
    font-size: 3.6rem;
    line-height: 100%;
    text-align: center;
    max-width: 80%;
    color: var(--white);
}

.about-text .name {
    font-family: 'KyivTypeSans-Bold';
}

.about-text .anim-text {
    font-family: 'KyivTypeSerif-Regular2';
    letter-spacing: 2px;
}

@media (max-width: 1023px) { 
    .stars {
        font-size: 2.8rem;
    }

    .about-text {
        font-size: 2.8rem;
        max-width: 90%;
        line-height: 105%;
    }
}

@media (max-width: 768px) { 
    .stars {
        font-size: 2rem;
    }

    .about-text {
        font-size: 2rem;
        max-width: 95%;
        line-height: 120%;
    }
}

@media (max-width: 450px) { 
    .stars {
        font-size: 1.8rem;
    }

    .about-text {
        font-size: 1.8rem;
        max-width: 95%;
        line-height: 120%;
    }
}