.banner {
    height: 600px;
    background-image: url("/imagens/banner-correntes-elo-forte.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    display: flex;
}

.banner__text__container {
    max-width: 800px;
    padding-right: 5%;
    margin: auto;
    padding: 0 1rem;
}

.banner__text__container h1 {
    color: white;
    font-size: 3.2rem;
    font-weight: 700;
    text-shadow: 3px 3px black;
}

.banner button {
    margin-top: .4rem;
    font-size: 1.1rem;
}

@media screen and (max-width: 768px) {
    .banner__text__container {
        padding: 0 3.5rem 0 1.5rem;
    }
    
    .banner__text__container h1 {
        font-size: 2.2rem;
        font-weight: 700;
    }
}