*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
    background:none;
    border:none;
}
html,body{
    width:100%;
    height:100%;
}
body{
    overflow:auto;
    background:#333;
}
video{
    width:100%;
}
div{
    color:#FFF;
}
label{
    color:#fff;
}
input,select{
    padding:30px;
    margin:20px 0;
    background-color:#4d4d4d;
    color:#FFF;
    max-width:100%;
}
option:disabled,
option[disabled]{
  opacity:.5;
}
button {
    display:block;
    padding:15px;
    background-color:#96f;
    margin:20px auto;
    border-radius:9px;
    font-size:3rem;
    width:20rem;
    color:#FFF;
    max-width:100%;
}
button:hover {
    background-color:#A7f;
    cursor:pointer;
}
button:focus {
    background-color:#85f;
    outline:0;
}
button:disabled,
button[disabled]{
  background-color: #ada3c2;
}
ol {
    margin-left:3rem;
}
#lists>div{
    float:left;
    width:50%;
}
#myname{
    float:right;
}
#install {
    display:none;
    position:absolute;
    padding:5px;
    background-color:#5AC;
    border-radius:5px;
    top:0;
    right:0;
    margin:5px;
    border:#5FF 2px solid;
    cursor:pointer;
    color:#000;
}
#toasts{
    position:fixed;
    bottom:0px;
    left:0px;
    right:0px;
    width:100%;
    max-height:50%;
    padding:10px;
    overflow:auto;
    pointer-events: none;
}
#toasts div{
    font-size:1.5rem;
    padding:10px;
    padding-left:20px;
    margin:10px 0;
    border-radius:100px;
    background-color:#444;
    transition: opacity 2s;
    opacity:1;
}
#quit{
    width:fit-content;
    background:red;
    margin:20px 20px 20px auto;
}
#statstext:hover + #hiddenstats{
    display:block;
}
#hiddenstats {
    position:absolute;
    display:none;
    background:#333;
}
#qr{
    float:right;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}
.qr-big{
    float:none;
    position:fixed;
    left:0;
    right:0;
    top:0;
    bottom:0;
    width:100%;
    height:100%;
    object-fit:contain;
}