body {
    margin:0;
    overflow:hidden;
    background:black;
    font-family:Arial, sans-serif;
}


/* Jam kanan atas */
#clock {
    position:absolute;
    top:20px;
    right:30px;
    color:white;
    font-size:40px;
    font-weight:bold;
    z-index:10;
}


/* Video full */
.video-container {
    width:100vw;
    height:calc(100vh - 70px);
}


iframe {
    width:100%;
    height:100%;
}


/* Running text */
.ticker {
    position:absolute;
    bottom:0;
    width:100%;
    height:70px;
    background:#002060;
    color:white;
    overflow:hidden;
    display:flex;
    align-items:center;
}


.ticker-text {
    white-space:nowrap;
    font-size:32px;
    animation:scroll 20s linear infinite;
}


@keyframes scroll {

from {
    transform:translateX(100%);
}

to {
    transform:translateX(-100%);
}

}
