@charset "utf-8";
h1{
    background-color: chocolate;
    text-align: center;
    color: aquamarine;
    padding: 1em;
}
ul{
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
}
li{
    flex-grow: 1;
   margin-bottom: 1em;
}
article{
    background-color: chocolate;
    background-image: url(Imagenes/fondoop.jpg);
    background-repeat: no-repeat;
    background-size: cover;

}
a{
    display: block;
    background-color: brown;
    text-align: center;
    padding:2em;
    color: aquamarine;
    border-radius: 50%;
    height: 150px;
    width: 150px;
    margin-left: 11%;
    margin-block: 4%;
}
div{
    text-align: center;
    margin-block: 3%;
}
body{
    background-image: url(imagenes/fondo.png);
    background-repeat: no-repeat;
    background-size: cover;
}
.contenido{
  margin-left: auto;
  margin-right: auto;
  width: 80%;
  background-color: gray;
  opacity: 90%;
}
p{
    background-color: brown;
    padding: 1em;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
footer{
    text-align: justify;
    background-color: chocolate;
    padding: 2em;
}