/* Estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilos de la pagina */
.pagina {
    background-color: #cbd5e1;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Estilo del contenido de enmedio */
.cuerpo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px 0 0 0;
}

.tarjeta {
    background-color: white;
    width: 95%;
    display: flex;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    gap: 40px;
    align-items: center;
}

/* Divisiones internas */
.texto {
    flex: 1.2;
}

.texto h1 {
    color: #00a8cc;
    margin-bottom: 25px;
    font-size: 2rem;
}

.texto p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
    text-align: justify;
}

/* Estilo del link OMS */
.link-oms {
    color: #00a8cc;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 1px solid transparent;
    transition: 0.3s;
}

.link-oms:hover {
    border-bottom: 1px solid #00a8cc;
}

.imagen {
    flex: 0.8;
    display: flex;
    justify-content: center;
    align-items: center;
}

.imagen img {
    width: 100%;
    border-radius: 12px;
}