* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    background-color: whitesmoke;
    list-style: none;
}

a {
    color: #d61d0c;
    text-decoration: none;
}

a:hover {
    background-color: #d61d0c;
    color: white;
}

header {
    color: black;
    width: 90%;
    margin-inline: auto;
    margin-block: 2%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    text-transform: lowercase;
    align-items: center;
    row-gap: 40px;
}

main {
    width: 90%;
    margin-inline: auto;
    margin-block: 2%;
}

.titulo {
    color: #d61d0c;
    font-size: 170%;
    font-weight: 400;
    line-height: 2em;
    text-transform: lowercase;
}

.subtitulos {
    color: black;
    font-weight: 100;
    text-transform: lowercase;
}

.aprobadas {
    text-decoration: line-through;
    text-transform: lowercase;
}

.solid {
    margin-block: 2%;
    margin-inline: auto;
    border: 0.5px solid black;
}

.contenedor {
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    row-gap: 40px;
    column-gap: 60px;
    line-height: 1.5em;
}

.alumno {
    line-height: 2em;
}

.datos {
    line-height: 1.5em;
    text-transform: lowercase;
    line-height: 1.75em;
    color: black;
}

.datos-rotulo {
    text-transform: none;
}

footer {
    width: 90%;
    margin-inline: auto;
    margin-block: 2%;
    color: #959595;
    text-align: left;
}