body{
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0)
    ;
}
h1{
    font-size: 60px;
    color: red;
}
p{
    font-size: 20px;
    padding: 30px;
}
img{
    width: 400px;
}
header{
	
    background-color: rgb(183, 0, 255);

}
nav{
	
	max-width: 900px;
	margin: auto;
	background-color: #000000;
	font-size: 20px;
	margin-top: 0%;
}

button{
    font-size: 1.25em;
    font-weight: bold;
    padding: 10px 30px;
    border-radius: 5px;
    border: 2px solid rgba(0,0,0,0.3);
    box-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    color: white;
    background-color: rgb(119, 0, 255);
}


.menu-horizontal{
	list-style: none;
	display: flex;
	justify-content: space-around;
}


.menu-horizontal > li > a{
	display: block;
	padding: 15px 20px;
	color: rgb(255, 255, 255);
	text-decoration: none;
}


.menu-horizontal > li:hover{
	background-color: red;
}


.menu-vertical{
	position: absolute;
	display: none;
	list-style: none;
	width: 200px;
	background-color: rgb(0, 0, 0);
}
.menu-horizontal li:hover .menu-vertical{
	display: block;
}



.menu-vertical li:hover{
	background-color: rgba(255, 255, 255, 0.356);
}


.menu-vertical > li > ul{
    position: absolute;
	display: none;
	list-style: none;
	width: 200px;
	background-color: rgba(0, 0, 0, 0.356);
}

.menu-vertical li a{
	display: block;
	color: white;
	text-decoration: none;
	padding: 10px 10px 10px 10px;
    
}




.menu-vertical2{
    display: none;
}

.menu-vertical:hover .menu-vertical2 {
    display: block;
  }

  footer{
    background-color: rgb(230,230,230);
}

footer p{
    margin: 0;
    padding: 12px;
    color: rgb(252, 0, 0);
}

footer .container{
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

#hero{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    height:50vh;
    background-image: linear-gradient(
        0deg,
        rgba(5, 5, 5, 0.562),
        rgba(3, 3, 3, 0.575)
    )
    ,url("imagenes/Personajes.webp");
    
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

#hero h1{
    color: rgb(255, 255, 255);
    font-size: 3.5em;

}
