body {
    background-color: rgba(94, 126, 146, 0.994);
    min-width: auto;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}
#volver {
    text-decoration: none;
}

h1,h2 {
    color: aliceblue;
    font-family: 'Times New Roman';
    margin: 0;
    padding: 0;
}

.header {
    display: flex;
    justify-content: space-between; /* Para distribuirlos automáticamente y separarlos uno a cada lado */
    align-items: center;
    padding: 10px 0;
    white-space: nowrap; /* Mantiene todo en una línea sin saltos */
    background-color: rgba(31, 34, 35, 0.842);
}

.footer {
    color: aliceblue;
    text-align: center;
    line-height: 60px;
    background-color: rgba(31, 34, 35, 0.842);
}

.header-izq {
    text-align: left;
    font-size: 2em;
    font-weight: bold;
    margin-left: 20px;
}

.header-der {
    text-align: right;
    font-size: 1.3em;
    margin-left: 20px;
    margin-right: 20px;
}

hr {
    width: 100%;
    border-color: aliceblue;
    margin: 0;
}