@import url('https://fonts.googleapis.com/css2?family=Bitter&family=Limelight&family=Righteous&display=swap');

body, h1, h5{
    margin: 0;
    padding: 0;
}
/* Desde aca selectores de etiqueta de HTML */
body {
    background-color: burlywood;
    font-family: 'Bitter', serif;
}
.contenedor{
    background-color: beige;
    width: 80%; max-width: 95%;
    margin: 0 auto;
}
.cabeza {
    text-align: center;
    padding: 60px;
    font-family: 'Limelight', cursive;
}

.menu{ 

    background-color: whitesmoke;
    border: 1px solid;
    padding: 5px;
    text-align: center;
    font-family: 'Righteous', cursive;
}
.menu ul{
    list-style: none;
   }

.menu li{
     display: inline;
 }

.menu a{
    color: black;
    text-decoration: none;
   }
.menu a:hover{
    color: blue;
   }
h2{
    text-align: center;
    padding: 15px;
    font-family: 'Limelight', cursive;
}
h4{
    font-family: 'Righteous', cursive;
    text-align: center;
}
p{
    line-height: 25px
}

.centrar{
    display: block;
    margin: auto;
}

.flechita{
    padding: 20px;
}

.video {
text-align: center;
padding: 30px;
}

.pie{
    color: white;
    background-color: brown;
}