html,
body {
    height: 100%;
    font-family: Arial, Helvetica, sans-serif;
    background-color: black;
    margin: 0;
    color: white;
}

#container {
    width: 100%;
    margin: 0;
    height: 100%;
    text-align: center;
}

#imagePlayer {
    height: 100%;
    width: 100%;
    margin: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: none;
}

#debug {
    height: auto;
    width: auto;
    color: white;
    font-size: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

#infobox {
    height: auto;
    width: auto;
    color: white;
    font-size: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

#qrCode {
    height: 300px;
    width: 300px;
    padding: 18px;
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.3);
    background-color: white;
    position: absolute;
    border-radius: 5%;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

#linkCode {
    padding: 18px;
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.3);
    background-color: white;
    display: none;
}

#setupBox {
    height: 100%;
    width: 100%;
    margin: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* todo: change image here? */
    background-image: url('./assets/setup_bg_adonmo_landscape.png');
    display: none;
}


#videoPlayer {
    position: fixed;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: none;
}

#frame {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: 100%;
    display: none;
}