@charset "UTF-8";
/* CSS Document */

body {
    display: flex;
    align-content: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
    background-color: #00abbd;
}

img { width: 600px; }

.fullscreen-video {
    position: fixed;
    overflow: hidden;
    top: 50%;
    left: 50%;
    /* min-width: 100%;
    min-height: 100%; */
	max-height: 100%;
    width: 80%;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: -10;
}

.mobile-video {
    position: fixed;
    overflow: hidden;
    top: 50%;
    left: 50%; 
	max-width: 100%;
    /*  min-height: 100%; 
	min-width: 100%;*/
    width: auto;
    height: 85%;
    transform: translateX(-50%) translateY(-50%);
    z-index: -10;
}

.bg-overlay {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: #000;
    opacity: 0;
    z-index: -9;
}