body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

header {
    background-color: #fff !important; 
    padding: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important; /* Muda o alinhamento geral para começar do início */
}

.logo {
    flex-shrink: 0; /* Não permite que a imagem encolha */
}

.logo img {
    max-width: 200px; /* Ajuste o tamanho conforme necessário */
    height: auto;
}

.text-container {
    margin-left: 14%;
   text-align: center;

}

p {
    margin: 5px 0;
}

.links {
    display: inline-block;
    margin-top: 10px; /* Ajusta o espaço acima dos links */
}

.links a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

.links a:hover {
    text-decoration: underline;
}

main {
    background-color: #3a8144;
    padding: 5px;
    text-align: end;
    margin-bottom: 15px;
}

