body {
    font-family: Arial, sans-serif;
    background-color: #121212; /* Color de fondo oscuro */
    color: #fff; /* Color de texto blanco */
    margin: 0;
    padding: 0;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    object-fit: fill;
}

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px; /* Ancho del sidebar */
    height: 25vh; /* Altura total de la ventana */
    background-color: #333; /* Color de fondo oscuro para la barra lateral */
    overflow-y: auto; /* Desplazamiento vertical automático */
    padding: 10px;
    z-index: 9999; /* Colocar encima de otros elementos */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.content {
    margin-left: 45px;
    padding: 20px;
}

.content img
{
    width: 230px;
    padding-top: 45px;
    margin-left: 45px;
}

.audio-player {
    width: 100%;
}

.audio-player audio {
    width: 100%;
}

.audio-player .controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.audio-player .controls button {
    background-color: transparent;
    color: white;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: color 0.3s;
    margin-right: 5px;
}

.audio-player .controls button:hover {
    color: #4CAF50; /* Cambio de color al pasar el mouse */
}

.whatsapp-button {
    margin-top: 20px;
}

.whatsapp-button button {
    background-color: #25D366; /* Color de WhatsApp */
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 5px 5px;
    cursor: pointer;
    transition: background-color 0.5s;
}

.whatsapp-button button:hover {
    background-color: #128C7E; /* Cambio de color al pasar el mouse */
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Color de fondo del footer */
    color: #fff; /* Color de texto del footer */
    padding: 10px 0px 10px 0px;
    text-align: center;
}

/* Estilos específicos del footer */
.footer a {
    color: #fff; /* Color de los enlaces del footer */
}

.footer a:hover {
    color: #4CAF50; /* Cambio de color al pasar el mouse */
}

@media screen and (max-width: 600px) {
    .content {
        padding: 45px;
        width: 70%;
    }
    .content img {
        width: 60%;
        padding: 0px;
        margin-left: 5%;
    }
    .footer
    {
        width: 101%;
    }
}
