html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.container {
    text-align: center;
    flex: 1;
}

nav a {
    color: black; /* Cor do texto dos links do menu */
    text-decoration: none; /* Remove o sublinhado dos links */
    margin-right: 20px; /* Espaçamento entre os links */
}

.text {
    text-align: center;
    margin: 0 auto;
    width: 50%;
}

hr {
    opacity: 0.2;
    margin: 20px;
}
