* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f0f4f8; /* Cor de fundo suave */
    color: #333; /* Cor do texto */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Altura total da tela */
}

.container {
    text-align: center;
}

.logo {
    max-width: 150px; /* Largura máxima do logotipo */
    margin-bottom: 20px; /* Espaçamento abaixo do logotipo */
}

h1 {
    font-size: 1.5rem; /* Tamanho da fonte do título */
    color: #004080; /* Cor azul profissional */
}

/* Responsividade */
@media (max-width: 600px) {
    h1 {
        font-size: 1.2rem; /* Tamanho da fonte do título em dispositivos menores */
    }
}
