@charset "utf-8";

html {
    font-size: 12px;
    font-family: roboto;
    background-color:midnightblue;
    background: linear-gradient(to top,#91368e, #09044b)
}
* {
    box-sizing: border-box;
}

#logo {

    background-color:rgba(145, 54, 142, 0.55);
    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: rgba(9, 4, 75, 0.55);
    text-align: center;
    display: block;
    font-family: sans-serif;
    padding: .25em;
    border: 6px;
    border-color: #91368e;
    margin-top: .20em;
    
    
}

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

p {
    color:white;
    text-align: center;
}

h1 {
    color:#c179bf;
    text-align: center;
    font-size: 20px;
    
}
h2 {
    color:white;
    text-align: center;
    font-size: 16px;
    
}
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;
}