body, html {
    font-family: Arial;
    margin: 0;
    padding: 0;
}

#home-header {
    position: relative;
    width: 100%;
    height: 100vh;
    margin-bottom: 200vh;
    overflow: hidden;
}

.picture picture img {
    max-width: 100%;
}
.picture.picture--cover {
    position: relative;
}
.picture.picture--cover picture {
    position: absolute;
    width: 100%;
    height: 100%;
    display:flex;
}
.picture.picture--cover picture img {
    object-fit: cover;
    height: auto;
    width:100%;
}

.swiper-slide {
    position: relative;
    overflow: hidden;
    transition-delay: 1000ms;
}
.swiper-slide .player-wrap {
    display: block;
    height: 100%;
    width: 100%;
    position: relative;
    transform: scale(1.1);
}

.swiper-slide .picture {
    width: 100%;
    height: 100%;
}

.swiper-slide .kenburns {
    animation: kenburns 20s linear 0s infinite alternate;
}

.swiper-slide video, .swiper-slide iframe, .swiper-slide .picture {
    object-fit: cover;
    pointer-events: none;
    box-sizing: border-box;
    left: 50%;
    min-height: 100%;
    min-width: 100%;
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    height: 56.25vw;
    width: 177.77777778vh;
}

.swiper-slide.swiper-slide-active .caption {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.7s cubic-bezier(0.32, 0.34, 0, 1.62) 0.6s;
}

.swiper-slide .caption {
    position: absolute;
    top: 44%;
    left: 5%;
    text-align: center;
    padding: 20px;
    border: 3px solid;
    color: #fff;
    margin: 0;
    font-size: 40px;
    font-weight: bold;
    letter-spacing: 0.02em;
    opacity: 0;
    z-index: 1;
    transition: all 0.3s ease;
    transform: translateY(100px);
}

.video-time-log {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;
    font-weight: bold;
    color: #fff;
    background: red;
    padding: 5px 10px;
    border-radius: 5px;
}

@keyframes kenburns {
    0% {
        transform: scale(1); /* Standard syntax */
        transition: transform 20s linear 0s; /* Standard syntax */
    }
    100% {
        transform: scale(1.3); /* Standard syntax */
        transition: transform 20s linear 0s; /* Standard syntax */
    }
}