body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    color: #333;
    text-align: center;


 /* Configurando a imagem de fundo */
 background-image: url("assets/img/Maltt.png"); /* Caminho da imagem */
 background-size: cover; /* Faz com que a imagem cubra toda a tela */
 background-position: center; /* Centraliza a imagem */
 background-repeat: no-repeat; /* Evita repetição da imagem */
 background-attachment: fixed; /* Mantém a imagem fixa durante o scroll */
}


.container {
    width: 80%;
    margin: auto;
}
header {
    text-align: center ;
    padding: 2em 0;
    background-color: #333;
    color:#afa9a9;
}
header h1 {
    font-size: 3em;
    margin: 0;
    text-align: center;
}
nav {
    background-color: #555;
    overflow: hidden;
}

nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 0 10px;
}

nav ul li a {
    display: inline-block;
    text-align: center;
    padding: 1em 2em;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

nav ul li a:hover {
    background-color: #777;
}
section {
    padding: 2em 0;
    border-bottom: 1px solid #f7f4f4;
}

section h2 {
    font-size: 2.5em;
    text-align: center;
    color: #333;
    margin-top: 20px;
}

section h3 {
    font-size: 2.5em;
    text-align: center;
    color: #333;
    margin-bottom: 0.5em;
}

section h4 {
    font-size: 2.5em;
    text-align: center;
    color: #333;
    margin-bottom: 0.5em;
}

section h5 {
    font-size: 2.5em;
    text-align: center;
    color: #333;
    margin-bottom: 0.5em;
}

section ul {
    list-style: none;
    padding: 0;
    text-align: center;
    margin: auto;
    width: 50%; 
}

section ul li {
    margin-bottom: 15px;
    text-align: center;
    font-size: 1.5em;
    line-height: 1.5;
}

section ul li a {
    color: #007BFF;
    text-decoration: none;
}

section ul li a:hover {
    text-decoration: underline;
}
section ul ul {
    padding-left: 20px;
}

section ul ul li {
    font-size: 1em;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}