/* Reset de estilos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #e0f3ff; 
    color: #333;
}

.container {
    width: 90%;
    margin: 0 auto;
}

/* Estilos de la sección de contenido */
.contenido {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5%;
}

.enlaces {
    width: 70%;
    padding: 20px;
    background-color: #F4FAFF;
    border: 3px solid rgb(191, 216, 242);
    border-radius: 5px;
    box-sizing: border-box;
    color: #333; 
}

.enlaces h2 {
    margin-top: 0; 
    color: #2496ca; 
    text-align: center; /* centrar el título */
}

.enlaces table {
    width: 100%;
}

.enlaces table td {
    padding: 10px;
    vertical-align: top;
}

.enlaces table a {
    color: #2496ca;
    text-decoration: none;
}

.enlaces table a:hover {
    text-decoration: underline;
}
