/* probando css */

/* SELECTORES DE ETIQUETAS HTML */

@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@300&family=Staatliches&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Staatliches&display=swap');

h1, h2, h5 {
    font-family: Staatliches;
}

h3, p, ul {
    font-family: Barlow;
}

h2 {
    font-size: 30px;
    background-color: gray;
}

h3 {
    font-size: 25px;
    font-style: italic;
}

p {
    font-size: 20px;
}

body, h1, h2, ul {
    margin: 0%;
    padding: 0%;
}

body {
    background-color: grey;
}

h1{
    color: red;
    background-color: black;
}

/* SELECTORES PERSONALIZADOS*/

.contenedor {
    width: 75%;
    margin: 0 auto;
    background-color: white;
}

.titulo {
    font-size: 40px;
    padding: 20px;
}

.resumen{
    font-size: 20px;
    padding: 20px;
}

.indice{
    color: white;
    background-color: black;
}
.indice ul {
list-style: none;
}

.indice li {
    font-size: 25px;
    display: inline-block;
    padding: 20px;
}

.indice a {
    color: white;
    text-decoration: none;
}

.indice a:hover {
    color: red;
}

.cuerpo1 {
    font-size: 15px;
    padding: 20px;
}
.cuerpo2 {
    font-size: 15px;
    padding: 20px;
}
.cuerpo3{
    font-size: 15px;
    padding: 20px;
}
.cuerpo4 {
    font-size: 15px;
    padding: 20px;
}
.video {
    font-size: 15px;
    padding: 20px;
}
.volver {
    color: red;
    font-size: 30px;
    background-color: black;
    padding: 5px;
}

.volver :hover {
    color: white;
}

.resumen {
    border: 1px solid black;
    background-image: url(../img/fondo.jpg);
    padding: 5px;
    color: black;
}

.centrar{
    display: block;
    margin: auto;
}