/* 
    Créditos: Cristhian Yalle 
    Descripción: Estilos responsivos para el sitio web de la comunidad de desarrolladores Grupo Yalle.
    Fecha: 2025-06-15
    Licencia: MIT License
    Este archivo contiene estilos CSS para hacer que el sitio web sea responsivo y se adapte a diferentes tamaños de pantalla.
*/

.full-bg {
    position: relative;
    /* top: 0; */
    /* left: 0; */
    width: 100%;
    height: 100vh;
    z-index: -1;
    /*background-image: url(assets/video/karin_backgraund.mp4);
            background-color: white;*/
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* filter: brightness(0.4); */
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}