body {
    background-color: #121212;
    color: #ffffff; /* marrón claro */
    font-family: Arial, sans-serif;
}
header {
    background-color: #ffffff;
    padding: 10px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header img {
    height: 40px;
}
.user-btn {
    background-color: #00b5d9;
    color: #121212;
    border-radius: 50%;
    padding: 10px 12px;
    cursor: pointer;
    border: none;
}
.media-wrapper {
    margin-top: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
}
.video-frame, .audio-frame {
    width: 80vw;
    height: 70vh;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0,0,0,0.7);
}
.video-frame iframe,
.audio-frame iframe {
    width: 100%;
    height: 100%;
}

@media (max-width: 2048px) {
    #mediaDescription {
        font-size: 2.5em; /* Tamaño de fuente dos veces y media mayor que el padre */
    }
}

@media (max-width: 768px) {
    .video-frame, .audio-frame {
        width: 90vw;
        height: 50vh;
    }

    .login-container {
        height: 70vh;
    }

    #mediaDescription {
        font-size: 1.7em;
    }
}

.introDescription {
    font-size: 1.2em; /* Tamaño de fuente dos veces y media mayor que el padre */
    color: #ffffff; /* marrón claro */
    font-family: Arial, sans-serif;
}

#mediaDescription {
    color: #ffffff; /* marrón claro */
    font-family: Arial, sans-serif;
}

.btn-primary {
    background-color: #ffffff;
    border: 1px solid black;
    color: #121212;
}
.btn-primary:hover {
    background-color: #a3a3a3;
}

.login-container {
    height: 77vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff; /* marrón claro */
}
.card {
    background-color: #1e1e1e;
    border: none;
    padding: 20px;
    border-radius: 1rem;
    color: #ffffff; /* marrón claro */
}

.contact-form {
    color: #ffffff; /* marrón claro */
}
h4{
    color: #ffffff; /* marrón claro */
}

footer {
    /*background-color: #1a1a1a;*/
    padding: 10px 0;
    margin-top: 30px;
    /*border-top: 1px solid #333;*/
}

.footer-text {
    font-size: 0.64rem; /* Tipografía pequeña */
    color: #ffffff; /* Marrón claro definido en tus estilos */
    text-align: center;
}

.footer-link {
    color: #00b5d9;
    text-decoration: none;
    font-weight: bold;
}

.footer-link:hover {
    text-decoration: underline;
    color: #a3a3a3;
}

.footer-icon {
    height: 36px;
    width: 36px; /* Definir ancho para mantener la forma circular */
    display: block; /* Asegura que respete el flujo del contenedor flexible */
    object-fit: contain; /* Mantiene la proporción de la imagen dentro del círculo */
}