.banner{
    background-image: url('../imagens/banner.jpg');
    height: 192px;
    color: white;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.banner__titulo{
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: white;
}

.banner__subtitulo{
    font-size: .875rem;
    margin-bottom: 1rem;
    color: white;
}

.button-consoles{
    width: 119px;
    height: 40px;
    padding: .75rem 1rem;
    border:none;
    background-color: var(--cor-fonte2);
    color: white;
    text-align: center;
    font-size: .875rem;
    font-weight: 400;
}

@media screen and (min-width: 768px){
    .banner__titulo{
        font-size: 3.25rem;
    }
    .banner__subtitulo{
        font-size: 1.375rem;
    }
    .banner{
        height: 352px;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
}

@media screen and (min-width: 1024px){
    .button-consoles{
        width: 130px;
        height: 48px;
        padding: 1rem;
        font-size: 1rem;
        font-weight: 400;
        align-items: center;
        text-align: center;
    }
}