/* Ejercicio 1 */
#titulo-principal {
    font-family: Arial, sans-serif;
    font-weight: bold;
    text-align: center;
    margin: 20px 0;
}

/* Ejercicio 2 */
h2 {
    background-image: linear-gradient(to right, lightblue, white);
    padding: 10px;
    line-height: 1.5;
}

/* Ejercicio 3 */
li {
    margin: 5px 0;
    padding: 5px;
    font-family: Georgia, serif;
}

li strong {
    color: darkred;
}

/* Ejercicio 4 */
.calificacion {
    color: gold;
    font-style: italic;
}

/* Ejercicio 5 */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

table th,
table td {
    border: 1px solid black;
    text-align: center;
    padding: 10px;
}

table thead {
    background-color: lightgray;
}

/* Ejercicio 6 */
a {
    color: blue;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Ejercicio 7 */
footer {
    text-align: center;
    font-size: 0.8em;
    margin-top: 20px;
    color: gray;
}

/* Ejercicio 8 */
#titulo-principal,
.intro {
    background-image: url('imgs/background.jpg');
    background-size: cover;
    color: black;
    padding: 20px;
}
