#sectionNumeros {
    height: auto;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
}

#nossosNumerosTitle {
    font-size: 48px;
    font-weight: 600;
    text-transform: uppercase;
}


.numero {
    font-size: 110px;
    font-weight: bolder;
}

.numeroTitle {
    font-size: 32px;
    font-weight: bolder;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.75rem;
}

#sectionNumeros .centerColumn:first-child {
    width: 100%;
}

#sectionNumeros .centerColumn {
    width: 70%;
}


@media screen and (max-width: 900px) and (orientation: portrait) {
    #sectionNumeros {
        height: calc(80vh - 100px);
    }
}

@media screen and (max-width: 500px) and (orientation: portrait) {
    #sectionNumeros {
        height: calc(80vh - 100px);
    }

    #nossosNumerosTitle {
        font-size: 36px;
    }

    .numero {
        font-size: 80px;
    }

    .numeroTitle {
        font-size: 26px;
    }
}

@media screen and (max-width: 350px) and (orientation: portrait) {
    #sectionNumeros {
        height: calc(110vh - 100px);
    }

    #nossosNumerosTitle {
        font-size: 28px;
    }

    .numero {
        font-size: 64px;
    }

    .numeroTitle {
        font-size: 20px;
    }
}