img {
    max-width: 100%;
    height: auto;
    display: table;
    margin: 0 auto;
}

.btnClass {

    margin: 10px auto;
    display: block;
    outline: none;
    cursor: pointer;
    font-size: 12px;
    line-height: 1;
    border-radius: 500px;
    transition-property: background-color,border-color,color,box-shadow,filter;
    transition-duration: .3s;
    border: 1px solid white;
    letter-spacing: 2px;
    min-width: 160px;
    text-transform: uppercase;
    white-space: normal;
    font-weight: 700;
    text-align: center;
    padding: 17px 48px;
    color: #fff;
    background-color: #001c76;
    height: 48px;
    :hover{
        transform: scale(1.04);
        background-color: #000534;
    }


}

body {
    font-family: 'Nunito', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000534; /* Cor de fundo para contraste */
    color: #ffffff; /* Cor de texto padrão */
    text-align: center; /* Centraliza o texto no corpo */
}

h1, h2 {
    color: #ffffff; /* Fonte branca */
    text-align: center; /* Alinhar ao centro */
    margin: 10px 0; /* Espaçamento vertical reduzido */
    padding: 5px; /* Padding interno reduzido */
}

h1 {
    font-size: 2em; /* Tamanho menor para h1 */
    font-weight: 900; /* Fonte mais grossa para h1 */
}

h2 {
    font-size: 1.5em; /* Tamanho menor para h2 */
    font-weight: 400; /* Fonte normal para h2 */
}

/* Ajustes para dispositivos móveis */
@media (max-width: 768px) {
    h1 {
        font-size: 1.4em; /* Tamanho ajustado para dispositivos móveis */
    }
    
    h2 {
        font-size: 1.2em; /* Tamanho ajustado para dispositivos móveis */
    } 
}





  

    




  

    

