
section#about{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url(/assets/img/bg_7.jpg);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat; 
    padding-top: 6rem;
    padding-bottom: 6rem;
    height: fit-content;
    min-height: auto
}

#about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: var(--max-width);
    margin-left: 4rem;
    margin-right: 4rem;
    gap: 2rem;
}

#about h2 {
    text-align: center;
}

#about p {
    text-align: center;
    margin: 0;
}

#about-content-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
}


@media (max-width: 768px) {
    #about {
        padding-top: 10rem;
    }
}