/* ESTILO GENERAL */

body {
    background-color: #1a3a5f;
    color: #e0f2fe;
    font-family: "Segoe UI", sans-serif;
    margin: 0;
    padding: 0;
}


/* TITULOS PRINCIPALES */

h1 {
    font-family: Georgia, serif;
    color: #38bdf8;
    text-align: center;
}


/* LINKS */

a {
    color: #7dd3fc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}


/* CENTRADO GENERAL */

center {
    display: block;
    text-align: center;
}


/* MENÚ */

nav {
    margin: 15px 0;
}

nav a {
    margin: 0 8px;
    font-weight: bold;
}

/* CENTRADO GENERICO */
.centrado {
    text-align: center;
}

/* TABLAS */
.tabla-estilo {
    border-collapse: collapse;
    margin: 20px auto;
    width: 80%;
}

.tabla-estilo th,
.tabla-estilo td {
    border: 2px solid #38bdf8;
    padding: 8px;
    text-align: center;
}

.tabla-estilo th {
    background-color: #0f2742;
    color: #38bdf8;
}