html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
}

.overlay-box:after {
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    /* opacity: 0.85; */
    background: linear-gradient(135deg, #07105b 0%, #0d23ecd2 100%);;
    z-index: -1;
}

.overlay-box {
    height: 150px; /* Ajusta esta altura según tus necesidades */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.overlay-box img.profile-img {
    width: 80px; /* Ajusta el tamaño de la imagen */
    height: 80px; /* Asegúrate de que la altura y la anchura sean iguales para mantener la forma circular */
    object-fit: cover;
}

.overlay-box h3 {
    margin-top: 10px; /* Ajusta el margen superior si es necesario */
}

.card-footer {
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-footer .btn {
    display: block;
    width: auto; /* Asegúrate de que el botón no ocupe todo el ancho del contenedor */
    text-align: center;
}

.illuminated-image {
    filter: drop-shadow(0 0 10px rgb(255, 255, 255));
}

.card {
    background-color: transparent;
}

.img-small {
    display: none;
}

@media (max-width: 500px) {
    .img-large {
        display: none;
    }
    .img-small {
        display: block;
    }
}

.iframe-container {
    width: 100%;
    height: 100%    ;
}

iframe {
    width: 100%;
    min-height: 30rem;
    border: none; /* Remueve el borde del iframe */
}
