/* REGLAS GENERALES */
* {
    padding: 0;
    margin: 0;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;

}
body {
    background-color: black;
    font-family: 'Poppins', sans-serif;
    color: white;
}

footer {
    background-color: rgba(255, 255, 255, 0.583);
    text-align: center;
    margin-top: 1em;
    padding: 1em 0 ;

}



/* ENCABEZADO */
header {
    text-align: start;
    padding: 1em;
    color: white;
    text-align: center;
}
header img {
    width: 5em;
    background-color: white;
}
header li {
    margin-top: 0.5em;
}
header li a {
    color: white;
    font-size: 1em;
}

/* MAIN  */
section {
    margin: 0 1em;
}
section ul li {
    margin-left: 2em;
    padding-top: 0.5em;
}

section h2 {
    font-family: 'Losta Masta';
    text-decoration: underline;
    padding-top: 1em;
}
h1 {
    font-family: 'Losta Masta';
    font-size: 2em;
}
#presentacion {
    display: block;
    text-align: center;
}
#presentacion img {
    width: 16em;
    border-radius: 100%;
    border: solid white;
}
.tema p {
    text-align: center;
}
.tema h3 {
    background-color: white;
    font-family: 'Losta Masta';
    color: black;
    font-size: 2em;
    text-align: center;
}
.tema img {

    width: 100%;
}


