
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body{
    background:url('./HomeLandingkllaar.jpg') no-repeat center center/cover ;
    font-family: "open Sans", sans-serif;
}


.showcase{
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.video-container{
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#video{
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) ;
}

#videoMovil{
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) ;
}



@media screen 
and (min-device-width: 1200px) 
and (max-device-width: 1600px)  { 
    .video-container{
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        height: 80%;
        overflow: hidden;
    }
}  


@media only screen and (max-width: 767px) {

    body {
        background:url('./HomeLandingkllaarMovil.jpg') no-repeat center center/cover;
    }


@media (min-width : 991px){
    #videoMovil{
    display: none; 
    } 
}


@media (max-aspect-ratio:16/9){
    .video-container video {
        width: 100%;
        height: auto;
    }  
} 


@media (max-width : 990px){
    #video{
    display: none; 
    } 

    @media (min-aspect-ratio:16/9){
        .video-container video {
            width: auto;
            height: 100%;
        }      
    }    
             

}

