html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.navbar {
    border-bottom: 3px solid #870C4A;
    background-image: url('/imagenes/header 2000 x 100.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 8px 15px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
}

.content {
    flex-grow: 1;
    margin-top: 70px;
    padding-bottom: 50px;
}

.footer {
    background-color: #870C4A;
    color: white; /* Texto blanco */
    text-align: left; /* Centrado del texto */
    padding: 15px; /* Espaciado alrededor */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    font-size: 15px; /* Tamaño de fuente más pequeño */
    display: flex;
    justify-content: space-between;
}
    .footer span:hover {
        text-decoration: underline; /* Subrayado al pasar el ratón */
        cursor: pointer;
    }

.image-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-right: 20px;
}
