@charset "UTF-8";

       
        body, html {
            margin: 0;
            padding: 0;
            height: 100%;
            background-color: #000;
            font-family: 'Montserrat', sans-serif;
            color: white;
        }

       
        .video-container {
            position: relative;
            height: 100%;
            width: 100%;
            overflow: hidden;
        }

       
        video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    width: 100%;
    height: 100%;
}


		
		footer {
            position: fixed;
            bottom: 0;
            width: 100%;
            background-color: #000;
            color: #2b911e; /* Verde */
            text-align: center;
            padding: 12px 0;
            font-size: 10px;
			height: 30px;
        }


       
        @media (min-width: 768px) {
            video {
                height: 100%;
                width: auto;
            }
        }

        
        @media (max-width: 767px) {
            video {
                height: auto;
                width: 100%;
            }
        }

@media screen and (orientation: landscape) and (max-device-width: 812px) {
    video {
        width: auto;
        height: 100%;
    }
}

@media screen and (orientation: landscape) and (min-device-width: 813px) {
    video {
        width: 100%;
        height: auto;
    }
}
