*{
    margin:0;
    padding: 0;
    font-family: sans-serif;
}
#contenedor{
    width: 90%;
    margin:auto;
    border:1px solid gray;
    padding: 10px;
}
#cabecera{
    display:flex;
    flex-direction: row;
    justify-content: space-between;  
    align-items: center;
    height: 100px; 
    background-color: #F2CF1D;
    border-bottom: 2px solid grey; 
    width: 90%;
    position: fixed;
    z-index: 100;

    
 
}
#cabecera h1{    
    font-family: Helvetica;
    font-style: italic;
    text-transform: uppercase;    
}

#menu > ul {
    display: flex;
    flex-direction: row;   
    list-style-type: none;
    font-size: 10pt;
    height: 100%;
}
#menu a {
    color: darkslategrey;
    text-transform: uppercase;
    text-decoration: none;
    padding: 10px;
}
#menu a:hover {
    background-color: dimgrey;
    color: white;
    transition: all 2s ease;
}
#logo {
    width: 60%;              
    margin: 75px auto 5px; 
    text-align: center;      /

}

#logo img {
    width: 100%;
    max-width: 400px;      
    height: auto;
    display: inline-block;
    position: relative;
    top: 0;
    left: 0;
    z-index: 1;
        opacity: 0.8;
}

#personajes img {  
   width: 50%;
   position: absolute;
   top: 50%;
   left:50%;
   transform: translate(-50%,-50%);
   opacity: 0.7;
   z-index: 20;
  
}

 #contenido {
 
    padding:10px;
    height: 2300px;
    margin-top: 0;
    
    margin:20px;
    position: relative;
}
#contenido li{
    margin-left:20px;
    font-weight: bolder;
    font-style: italic;
    margin-bottom:10px ;    
}
p{
    font-weight: 100;
    text-align: justify;
}
h2{
    text-decoration: underline;
    margin-bottom: 10px;
    background-color: black;
    color:white;
    padding:10px;
    position: sticky;
    top: 100px;

}



