/* Estilos Gerais */
body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f2f5; /* Cinza claro de fundo */
    color: #333; /* Cor de texto escura */
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    padding: 20px;
}

header h1 {
    font-size: 2.5rem; /* Tamanho da fonte para telas maiores */
    color: #005995; /* Azul para o texto principal */
}

/* Responsividade */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem; /* Tamanho da fonte para tablets */
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.5rem; /* Tamanho da fonte para celulares */
    }
}