html, body {
    overflow: hidden;
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
}

#loadingDiv {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: auto;
    font-family: sans-serif;
    font-weight: bold;
    font-size: 6vmin;
    color: white;
    text-align: center;
}

#renderCanvas {
    position: absolute;
    height: 100%;
    width: 100%;
}

#infoFrame, #videoFrame {
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
}

#infoBox {
    width: 50%;
    height: 80%;
    border-radius: 3%;
    border: solid #ffffff 4px;
    background-color: #111111;
}

#videoBox {
    width: 60%;
    height: 80%;
    background-color: transparent;
}

#videoBox #exitButton {
    position: absolute;
    height: 6%;
    width: 4%;
    top: 11%;
    left: 21%;
}

#video {
    width: 100%;
    height: 100%;
    background-color: #111111;
}

#info {
    color: #ffffff;
    margin: 2% 2%;
    height: 92%;
    width: 96%;
    overflow-y: auto;
    font-size: 1.3rem;
}

#info .child {
    display: none;
}

#exitButton {
   width: 6%;
   height: 6%;
   outline: none;
   border: none;
   margin-top: -2.5%;
   margin-left: -2.5%;
}

#exitButton:hover {
    cursor: pointer;
}
