body {
	background: url("Achtergrond.png");
	background-size: auto;
	width: 100%;
	height: 100%;
	margin: 0px;
}

/* Uses Flexbox to center the content WITHOUT creating a z-index trap */
#start {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: center;
}

/* Shrink-wraps the image and acts as the anchor map for the link */
#start-wrapper {
	position: relative;
	display: inline-block; 
}

/* Tucks the image safely BEHIND the 3D model */
#start-bg {
	display: block;
	max-width: 80vw;
	max-height: 100vh;
	width: auto;
	height: auto;
	position: relative;
	z-index: -1; 
}

/* Pops the link IN FRONT of the 3D model so it catches your clicks */
#link {
	position: absolute;
	z-index: 10; 
	border-radius: 50px;
	
	left: 50%;
	transform: translate3d(-50%, -50%, 0);
	
	/* Tweak these to land perfectly on your button */
	top: 13%;    
	width: 35%;  
	height: 17%; 
	
	/* Uncomment this to see the clickable area while you adjust! */
	 /*background-color: rgba(255, 0, 0, 0.4);*/ 
}

.exit-button
{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	background: url("Exit.png") no-repeat;
	background-size: 100%;
	width: 18px;
	height: 18px;
	border: none;
	margin-top: 1%;
	margin-left: 1%;
}

.ar-button
{
	position: absolute;
	width: 18px;
	height: 18px;
	z-index: 1;
	
	background: url("CameraKnop002_UIT.png") no-repeat;
	background-size: 100%;
	
	bottom: 2%;
	left: 50%;
	transform: translate3d(-50%, -2%, 0);
	-ms-transform: translate3d(-50%, -2%, 0);
	-moz-transform: translate3d(-50%, -2%, 0);
	-webkit-transform: translate3d(-50%, -2%, 0);
}

.ar-button:hover
{
	background: url("CameraKnop002_AAN.png") no-repeat;
	background-size: 100%;
}

.ar-button:focus
.ar-button:visited
{
	background: url("CameraKnop002_UIT.png") no-repeat;
	background-size: 100%;
}		

