@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100&family=Tilt+Neon&display=swap"); /*importamos las fuentes*/

body {
    background-color: white;
    color: #394192;
}
h1,
h2,
h3,
h4,
h5 {
    font-family: "Tilt Neon", cursive; /*Cambiamos la fuente de los encabezados*/
}
h1 {
    font-size: 50pt;
    text-align: center;
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: 50px;
    margin-right: 50px;
    padding-left: 150px;
    padding-right: 150px;
}
p {
    text-align: justify;
    font-family: Open Sans;
}
/*cabecera*/
header {
    background-color: #3fd5ae;
    display: flex;
    text-align: center;
    border-style: solid;
    border-radius: 13px;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 5px;
    box-shadow: 5px 5px 5px grey; 
}
.logo {
    padding-right: 60px;
}

/*BARRA DE NAVEGACIÓN*/
nav {
    border-style: solid;
    border-color: #394192;
    border-radius: 15px;
    font-family: sans-serif;
    color: azure;
    font-family: "Tilt Neon", cursive;
    background-color: #4f6ee0;
    box-shadow: 5px 5px 5px grey; 
    padding: 5px;
}

a.menu {
    color: azure;
    text-decoration: none; /*quitamos el subrayado de los enlaces del menu */
}
.menu {  /*modificamos los contenedores con class="menu" para darles forma de botón */
    border-style: none;
    border-color: #101836;
    border-width: thin;
    border-radius: 10px;
    padding: 3px;
}
.menu:hover { /*Cuando pasamos el ratón por los enlaces del menú, cambian de color*/
    color: #101836;
    background-color: #3fd5ae;
}

/*CUERPO DE LA WEB*/
main {
    display: inline-flex;
    flex-wrap: wrap;
    flex-direction: row;
    
}
section {
    border-style: solid;
    border-radius: 13px;
    padding: 12px;
    margin: 12px;
    background-color: #3fd5ae;
    flex-wrap: wrap;
    flex-grow: 1; /*factor de crecimiento de las cajas*/
    flex-shrink: 1; /*factor de contracción */
    box-shadow: 5px 5px 5px grey; 
    width: 45%;

}

/*TABLAS*/
table {
    border-collapse: collapse; /* para que no ponga doble borde en la tabla */
    border-style: solid;
    border-color: #101836;
    font-family: open Sans;
    font-size: 15px;
    width: 90%; /*ancho respecto al contenedor que la contiene(section)*/
    align-content: center;
    background-color: aliceblue
}
th {
    border-style: solid;
    border-color: #101836;
    background-color: #4f6ee0;
    color: azure;
    
}
td {
    padding: 2px;
    text-align: center;
}

/*LISTAS*/
ul, ol, li {
    font-family: Open Sans;
}
/*PIE DE PÁGINA*/
footer {
    text-align: center;
    text-shadow: 1px 1px 3px grey;
    display: flex;
    justify-content: center;
        }
