.about-section{
    height: 100vh;
    width: 100vw;

    /* Centramos el contenido, son dos elementos hijos, so 2 filas */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    background-color: #090909;
}

.about-section h2{
    color: #fff;
    font-size: 4rem;
    text-align: center;
    margin: 0;

    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -4vh;

}