@charset "UTF-8";
/*!
* albertsongs TV
* Copyright 2022 albertsongs
* Licensed under MIT (https://github.com/albertsongs/albertsongs/blob/master/LICENSE)
*/
body {
    margin: 0;
    background: black;
}

iframe {
    border: 0;
    display: none;
}

video#player {
    width: 100%;
    height: 100%;
}

#appLog {
    color: white;
    display: none;
}

#qrcode {
    position: absolute;
    right: 64px;
    top: 64px;
    opacity: 0;
    animation: qrAnimation 15s 1 alternate linear;
}

@keyframes qrAnimation {
    from {opacity: 0}
    40% {opacity: 1}
    85% {opacity: 1}
    to {opacity: 0}
}