
html, body {
	margin: 0; 
	height: 100%; 
	width:100%;
	overflow: hidden;
	user-select: none; /* supported by Chrome and Opera */
	   -webkit-user-select: none; /* Safari */
	   -khtml-user-select: none; /* Konqueror HTML */
	   -moz-user-select: none; /* Firefox */
	   -ms-user-select: none; /* Internet Explorer/Edge */
}

body{
	margin:0;
	background-color: #000;
}

iframe{
	border: none;
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: -10;
	top: 0;
	left: 0;
}


/* --------------------------------------------------------------------------- USER BUTTON */

a{
	background-color: #fffc09;
	box-shadow: 10px 10px #6dcff6;
    border: 3px solid #000;
	color: #000;
	font-family: orator-std, monospace;
	font-size: 1em;
	font-style: normal;
	margin:0;
	padding: 15px 25px;
	position: absolute;
	text-decoration: none;
	width: 20%;
	z-index: 3;
}

.userButton2 a:hover, .userButton1 a:hover{
	color: #fff;
	box-shadow: 10px 10px #fffc09;
	background-color: transparent;
}





