@charset "utf-8";

html {
    font-size: 12px;
    font-family: sans-serif;
    background-color:#1d1d5c;
    
}
* {
    box-sizing: border-box;
}

#logo {

    background-color:lightskyblue;
    display: block;
    margin-left: auto;
    margin-right: auto;
    
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

header nav ul li a {
    text-decoration: none;
    color: white;
    background-color: #388bfc;
    text-align: center;
    display: block;
    font-family: sans-serif;
    padding: .25em;
    border: 6px;
    border-color: lightskyblue;
    
    
}

header nav ul li a:hover {
    color:white;
    background-color: #1634b2;
    font-weight: bold;
}

p {
    color:white;
}

h1 {
    color:skyblue;
}
h2 {
    color:skyblue;
}
h3 {
    color:skyblue;
}

.nombres {
    color: aliceblue;
}

footer {
    font-size: 10px;
    color: aliceblue;
    max-width: inherit;
    border-style: none;
    background-color:rgb(3, 3, 96);
    padding: .3em;
    text-align: center;
}