/* Tipografía */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap');

body {
    font-family: 'Lato', sans-serif;
    background-color: #eeedee;
    margin: 0;
    padding: 0;
    color: #563b0d; /* Marrón oscuro por defecto */
    max-width: 100%;
}

/* Encabezados */
h1, h2, h3, h4, h5, h6 {
    color: #1a66ab; /* Azul */
    margin: 10px 0;
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

p {
    color: #75550d; /* Marrón claro */
    font-size: 1rem;
    line-height: 1.6;
}

/* Enlaces */
a {
    color: #1d86bb; /* Celeste */
    text-decoration: none;
}

a:hover {
    color: #50b150; /* Verde claro */
    text-decoration: underline;
}

/* Botones */
button {
    background-color: #2d6532; /* Verde oscuro */
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-family: 'Lato', sans-serif;
    font-weight: bold;
    cursor: pointer;
}

button:hover {
    background-color: #50b150; /* Verde claro */
}
