*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

#contenedor{
    width: 90%;
    border: 1px solid grey;
    margin: 25px auto;
    padding: 10px;
}

#cabecera{
    height: 150px;
    border: 1px solid;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

#titulos{
    padding: 5px;
    width: 30%;
}

#menu{
    width: 60%;
    height: 100%;
    align-content: center;
}

#menu ul{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
}

#menu ul li{
    list-style-type: none;
    margin-bottom: 20px;
}

#menu ul li a{
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 10px 12px;
    
}

#menu ul li a:hover{
    background-color: black;
    color: white;
    border-radius: 5px;
}
#contenido{
    border: 1px solid grey;
    margin: 10px;
    height: 400px;
    overflow-y: scroll;
    scroll-behavior: smooth;
}

#contenido img{
    width: 200px;
    margin: 10px;
}

#peliculas{
    
    margin: 10px;
    padding-left: 20px;
}

.films{
    margin: 10px;
    padding: 20px;
}

.films h3 {
    padding: 10px;
    color: blue;
}

.films ol li{
    margin: 10px;

}

