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: contain;
    display: none;
}

#infobox {
    height: auto;
    width: auto;
    color: white;
    font-size: 18px;
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(1, 26, 36, 0.4);
    backdrop-filter: blur(3px);
    text-align: center;
    display: none;
}

#defaultVid {
    position: inherit;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: inherit;
}

#qrCode img, #qrCode canvas {
    min-width: 150px;
    min-height: 150px;
    width: 8vw;
    height: 8vw;
}
    
#qrCode {
    /* height: 8%;
    width: auto; */
    padding: 0.5vw;
    box-shadow: 0 0 1vw 0 rgba(0, 0, 0, 0.3);
    background-color: white;
    position: absolute;
    border-radius: 5%;
    bottom: 6vh;
    right: 1.5vw;
    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;
    position: fixed;
    z-index: 4;
}

#contentBox {
    height: 100%;
    width: 100%;
    margin: 0;
    position: fixed;
    object-fit: contain;
    background-color: rgba(1, 26, 36, 0.4);
    display: none;
    z-index: inherit;
}

#defaultBox {
    height: 100%;
    width: 100%;
    margin: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* todo: change image here? */
    background-color: rgb(1, 0, 9);
    background-image: linear-gradient(to bottom, rgba(1,0,9, 0.3), rgb(1,0,9, 0.3));
    backdrop-filter: blur(2px);
    display: block;
    top: 0;
    left: 0;
    z-index: inherit;
    position: absolute;
    object-fit: contain;
}

#screendetails {
    height: 2vh;
    right: 2vh;
    bottom: 2vh;
    position: fixed;
    padding: 0.2em;
    background-color: rgba(1, 0, 9, 0.4);
    backdrop-filter: blur(3px);
}


#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;
}