.apresentacao {
    height: 80vh;
    width: 95vw;
    max-width: 1920px;
    min-height: 700px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.texto-banner {
    background-color: rgb(67, 118, 212);
    box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.205);
    border-radius: 10px;
    padding: 2rem;
    font-size: 2.5rem;
    transition: 300ms;
    z-index: 1;
}

.texto-banner h1 {
    color: white;
    font-weight: 1000;
    text-shadow:  0px 0px 20px #ffffff6e;
}

@media (max-width: 1000px) {
    .texto-banner { 
        font-size: 1.8rem;
    }
}

@media (max-width: 950px) {
    .apresentacao {
        margin-top: 90px;
        flex-direction: column;
        height: auto;
    }

    .texto-banner {
        font-size: 1.5rem;
        margin-bottom: 2vh;
    }
}

@media (max-width: 320px) {
    .texto-banner {
        font-size: 1.05rem;
    }
}