.header-top {
    text-align: center;
    padding: 1.5rem 0;
    font-size: 2rem;

    background-color: hsl(220, 54%, 94%);
}

.header-top a {
    color: hsl(0, 0%, 20%);
}

.header {
    width: 100%;
    height: 400px;
    background-image: url('../img/image-michael-jordan.png');
    background-position:  top left;
    background-size: cover;
    background-repeat: no-repeat;
    color: white;
    position: relative;
}





.titulo-container {
    position: absolute;
    top: 25%;
    left: 23%;
    max-width: 40rem;
}

.titulo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.titulo h2 {
    font-size: 2rem;
    font-weight: 400;
}

.subtitulo {
    margin-top: 4rem;
}

.subtitulo h1 {
    font-size: 3rem
}

.subtitulo p {
    margin-top: 2rem;
    font-size: 1.8rem;
    line-height: 2;
    font-weight: 100;
}



@media (max-width: 1043px) {
    .header {
        background-position: 20% top;
    }
       .titulo-container {
        top: 20%;
        left: 20%;
        max-width: 40rem;
    }
}


@media (max-width: 704px) {
    .header-top {
        font-size: 1.8rem;
        padding: 1rem;

    }

    .header {
        height: 50vh;
        background-position: 30% top;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .titulo-container {
        top: 25%;
        left: 15%;
        max-width: 30rem;
    }

    .titulo {
        display: flex;
        align-items: center;
        gap: .5rem;
    }

    .titulo h2 {
        font-size: 2rem;
        font-weight: 400;
    }

    .subtitulo {
        margin-top: 3rem;
    }

    .subtitulo h1 {
        font-size: 2rem
    }
.subtitulo p {
    margin-top: 1.4rem;
    font-size: 1.4rem;
    line-height: 2;
    font-weight: 100;
}

}