header {
    display: grid;

}


header>ol>li {

    display: inline-block;

}

header>ol>li>a {
    text-decoration: none;
    color: black;
}

header>ol>li>ol>li>a {
    text-decoration: none;
    color: grey;

}


header>ol>li:hover {
    color: orange;

}

header>ol>li>a:hover {
    color: orange;

}

header>ol>li>ol>li>a:hover {
    color: orange;

}

main>section>h1 {
    background-color: orange;
    color: white;
}

main>section>article {

    box-shadow: 6px 5px 0px 0px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: 6px 5px 0px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 6px 5px 0px 0px rgba(0, 0, 0, 0.75);


}

main>section>article>a {

    background-color: orange;
    color: white;
    text-decoration: none;

}

main>section>article>a:hover {

    background-color: white;
    color: orange;
    text-decoration: none;
    border: 1px orange;
    padding-bottom: 20px;
}


footer{
background-color: rgb(247, 244, 244);

}


footer a {
    text-decoration: none;
    color: grey;
}

footer a:hover {

    color: orange;

}

/* Y aquí decido dividir el footer inicial */

footer p {
    color: grey;

}

footer>nav:first-child>ol>li {

    display: inline-block;
}


footer>nav:first-child>ol>li>ol>li:first-child>ol>li {
    display: inline-block;
}

footer>nav:last-child {

    border-top: 2px solid black;
}

footer>nav:last-child>ol>li>ol>li {


    display: inline-block;
}

article h3{

    text-align: right;
}

