* {
margin:0;
padding:0;
font-family: sans-serif;
box-sizing: border-box;
}


body{
    background: #851a14;
}

header{
    display:flex;
    width: 100%;
    height: 80px;
    background: chocolate;
}

header p{
    margin-top: 20px;
    margin-left: 60px;
    text-align: center;
}

.cabecera{
    display: flex;
    justify-content: left;
    align-items: left;
    gap: 450px;
    height: 100%;
}

.logo{
    left: 10px;
    top: 10px; 
    height: 80px;
    width: 80px;
}

.titulos{
    display: block;
    color: #851a14;
    padding-top: 15px;
    padding-left: 20px;
}

nav{
    position: absolute;
    max-width:600 px;
    width: 100%;
    padding: 0 0;
    align-items: right;
    background-color: rgb(142, 88, 60);;
}

.menu-horizontal{
    list-style: none;
    display: flex;
    justify-content:space-around;
}

.menu-horizontal li{
    padding: 10px;
    text-decoration: none;
}

.menu-horizontal li a{
    text-decoration: none;
    color: white;
    font-weight: bold;
 }

.menu-horizontal li a:hover{
    color:rgb(19, 15, 205);
}
.menu-vertical{
    border: 1px solid black;
    position: absolute;
    display: none;
    list-style: none;
    width: 150px;
    margin: 0;
    padding: 0;
}

.menu-vertical li{
    padding: 5px;
    background-color: #851a14;
    border: 10px;
    border-color: black;

}

.menu-vertical li a{
    display: block;
    list-style: none;
}

.menu-horizontal li:hover .menu-vertical{
    display:block;
}

.cuerpo{
    display: block;
    color:antiquewhite;
    margin-top: 15px;
    margin-left: 50px;
    width:80%;
}

.cuerpo H1{
    color:goldenrod;
}

.cuerpo p{
    font-weight: bold;
}

.texto{
    width: 80%;
    margin-top: 50px;
}

.detalle{
    display: block;
    top: 100px;
    margin-top: 15px;
    margin-left:30px;
    width: 65%;
    height: 15%;
    color:antiquewhite;

}

.detalle ul li{
    padding-top: 15px;
}
