/* Estilos generales del cuerpo */
body {
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Estilos comunes para todas las secciones */
.seccion {
    padding: 20px;
    margin: 10px;
    color: white;
    font-size: 22px;
    font-weight: bold;
    border-radius: 10px;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
}

/* Sección 1 - Fuente "Georgia" */
#seccion1 {
    background-color: #3498db; /* Azul */
    font-family: 'Georgia', serif;
    font-style: italic;
}

/* Sección 2 - Fuente "Courier New" */
#seccion2 {
    background-color: #e74c3c; /* Rojo */
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
}

/* Sección 3 - Fuente "Verdana" */
#seccion3 {
    background-color: #2ecc71; /* Verde */
    font-family: 'Verdana', sans-serif;
}
