﻿.ente::first-letter {
    text-transform: uppercase;
}

.ente {
    color: white;
    justify-content: end;
    align-items: center;
    display: flex;
}

.flex {
    display: flex;
    justify-content: end;
}

.brasao {
    color: white;
    justify-content: end;
    align-items: end;
    display: flex;
    width: 6rem;
}

.municipio-de {
    font-family: 'Open Sans';
    font-style: normal;
    font-size: 20px;
    font-weight: lighter;
    margin-top: 1rem;
}

.municipio {
    font-family: 'Open Sans';
    font-style: normal;
    font-size: 34px;
    line-height: 1.8rem;
}
/* Tela grande - esconde a div */
@media (min-width: 768px) {
    .municipio-de-mob {
        display: none; 
    }
    .municipio-mob {
        display: none; 
    }
}
/* Tela pequena - mostra a div */
@media (max-width: 767px) {

    .municipio-de-mob {
        margin-top: 1rem;
        height: 1rem;
        color: #424242;
        display: block;
    }

    .municipio-mob {
        font-size: 24px;
        font-weight: 700;
        color: #424242;
        display: block;
    }

    .ente {
        text-align: center;
    }
}

