body {
    margin: 0px;
    overflow: hidden;
}

.header {
	display: flex;
	text-align: center;
	background: black;
	color: white;
	justify-content: center;
	font-family: Lato, Helvetica, sans-serif;
}

#welcome {
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	display: flex;
	flex-direction: column;
	text-align: center;
	background: white;
	font-family: Lato, Helvetica, sans-serif;
	font-style: italic;
	font-weight: bold;
	color: blue;
	position: relative;
	justify-content: center;
	/* display: none; */
	padding: 0 20px;
}

#clickstart {
	margin: 0;
	position: absolute;
	top: 50%;
	-ms-transform: translateY(-50%);
	transform: translate(50%);
	right: 50%;
	background-color: white;
	border: none;
	color: black;
	padding: 8px 12px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 2em;
	border: 1px solid black;
	border-radius: 20px;
}

#v3d-container {
    position: absolute;
    left: 0px;
    width: 100%;
    height: 100%;
}

.fullscreen-button {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    background-size: 100% 100%;
    display: none;
    z-index: 1;
}

.fullscreen-open {
    background-image: url('media/fullscreen_open.svg');
}

.fullscreen-close {
    background-image: url('media/fullscreen_close.svg');
}

/*.v3d-simple-preloader-bar {
    background: red;
}

.v3d-simple-preloader-logo {
    background-image: url('media/no-logo.png');
    background-size: cover;
}*/

/* removes tap blinking on ios devices */
* { -webkit-tap-highlight-color:rgba(0,0,0,0); }
