<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("https://libera.log.br/assets/img/banner.jpg");
    background-repeat: no-repeat;
    background-size: cover;

    display: flex;
    align-items: center;
}

.banner__title__box {
    width: 50%;
}

.banner__title {
    font-size: 3rem;
    color: white;
    
    line-height: 2cm;
    font-family: 'Secular One', sans-serif;
}

.banner__button {
    background-color: darkorange;
    border: 1px solid darkorange;
    color: white;
    padding: 1rem 2.5rem;

}

.banner__button:hover {
    background-color: rgb(216, 104, 13);
    border: 1px solid rgb(216, 104, 13);;
}

/* Media Queries */

@media screen and (max-width: 576px) {  
    .banner {
        height: 400px;
    }

    .banner__title__box {
        width: 80%;
    }
    
    .banner__title {
        font-size: 2rem;
        line-height: 1.5cm;
    }
}

@media screen and (min-width: 577px) and (max-width: 767px) {
    /* .banner {
        height: 400px;
    } */

    .banner__title__box {
        width: 80%;
    }

    .banner__title {
        font-size: 2.2rem;
        line-height: 1.5cm;
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    /* .banner {
        height: 400px;
    } */

    .banner__title {
        font-size: 2.2rem;
        line-height: 1.5cm;
    }
}

@media screen and (min-width: 1024px) {

}</pre></body></html>