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,h3 {
    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);
}

.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;
}

.footer {
    color: aliceblue;
    text-align: center;
    line-height: 60px;
    background-color: rgba(31, 34, 35, 0.842);
}

.nf{
    margin: 15px;
    text-align: center;
    font-size: 35px;
}

.tasques {
    width: 564px;
    height: 64px;
    align-items: center;
    background-color: rgba(140, 165, 180, 0.994);
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    margin: 20px auto;
    align-items: center;
}

.tasques:hover {
    background-color: rgba(31, 34, 35, 0.842);
    transition: background 0.2s linear;
}

.titulo_tasques {
    text-align: center;
    color: aliceblue;
    margin: 20px;
    padding: 15px;
    font-size: 25px;
}

a {
    color: aliceblue;
    text-decoration: none; /* Quita las decoraciones (subrrallado, Negrita, Cursiva...) */
}