@charset "utf-8";
body {
    background-color: white;
}
h1 { text-align: center;
    background-color: white;
    color: rgb(255, 89, 0);
}
ul {
background-color: white;
list-style-type:none;
margin:0;
padding:0;
display:flex;
flex-direction: row;
}
li { flex-grow: 1;
     font-size: 25px;   
}
a {
display:block;
padding:1em;
background-color:rgb(27, 23, 23) ;
text-align:center;
margin-right:0.2em;
text-decoration:none;
color:rgb(255, 89, 0)
}
a:hover {background-color:rgb(255, 89, 0);
        color: rgb(27, 23, 23);
        }
h2 {
    font-size: 25px;
}
h3 {
    font-size: 25px;
}
blockquote {
    font-size: 15px;
    text-align: justify;
    background-color: white;
}
.contenido {
    margin-bottom: 0em;
    display: flex;
    flex-direction: row;
    text-align: justify;
    background-color: white;
}
article {    
    flex-basis: 70%;
    background-color: white
}
aside {
    flex-basis: 31%;
    background-color: white;
}
footer {
    background-color: black;
    color: white;
    font-size: 15px;
}
p {
    margin-left: 40px;
    font-size: 20px;
}
img {
    padding: 0px;
}