/*
Theme Name: Test Video
Author: Portalworks
Version: 1.0.0
*/
* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
    height: 100%;
    background: #0f0f10;
    display: grid;
    place-items: center;
}

.canvas-4k {
    width: 3840px;
    height: 2160px;
    padding: 100px;
    background: blue;
    overflow: hidden;
    position: relative;
}

.slide {
    position: absolute;
    top: 100px;   /* padding gore */
    left: 100px;  /* padding levo */
    right: 100px; /* padding desno */
    bottom: 100px;/* padding dole */
    opacity: 0;
    transition: opacity 0.6s ease;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}