html, body {
background-color: #000;
color: #eee;
margin: 0px;
padding: 0px;
position: fixed;
overflow: hidden;
top: 0;
bottom: 0;
left: 0;
right: 0;
}
.dialog {
display: none;
align-items: center;
justify-content: center;
font-family: sans-serif;
font-size: 170%;
position: absolute;
width: 100%;
height: 100%;
background: rgba(255, 255, 255, 0.2);
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}
.dialog.visible {
display: flex;
}
.dialog .wrap {
padding: 30px 60px;
margin: 20px auto;
width: 60%;
background: rgba(0, 0, 0, 0.8);
border-radius: 5px;
}
.dialog h1 {
margin: 0;
}
a, a:visited {
color: skyblue;
}
canvas {
cursor: -webkit-grab;
}
canvas:active {
cursor: -webkit-grabbing;
}
.webvr-button:first-of-type,
.webvr-button:nth-of-type(2) {
display: none !important;
}