@charset "UTF-8";

body {
    font: normal 1em Arial, Helvetica, sans-serif;
    background-color: #d6fde9;
}

h1 {
    font-size: 2m;
    color: #1e402f;
}

h2 {
    color: #3c805e;
}

#titulo-principal {
    background-color: #3c805e;
    color: rgb(34, 51, 51);
    text-align: center;
}

.topico {
    text-align: center;
}

.texto {
    text-align: justify;
}

a {
    font-weight: bold;
    text-decoration: none;
    color: red;
}

a:visited {
    color: darkred;
}

a:hover {
    text-decoration: underline;
}

.especial:hover {
    color: white;
    background-color: black;
    text-decoration: none;
}

.especial::before {
    content: '';
    font-weight: lighter;
}

.especial::after {
    content: '';
    font-weight: lighter;
}

div > p {
    display: none;
}

div:hover > p {
    display: block;
    background-color: yellow;
}

.basico {
    color: #3c805e; 
}

.intermediario {
    color: #80793c;
}

.avancado {
    color: #803c3c;
}