
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;
}

.javascriptClass{
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

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

a{
	font-family: orator-std, monospace;
	font-size: 1em;
	font-weight: 100;
	margin:0;
	padding: 15px 25px;
	position: absolute;
	text-decoration: none;
	width: 20%;
	z-index: 3;
}

.userButton1 a{
	animation: flash infinite linear 2s;
}

.userButton2 a{
	animation: flash infinite linear 2.1s;
}


@keyframes flash {
    0%{     
    	color: transparent;   
		background-color: transparent;
		box-shadow: 10px 10px transparent;
    	border: 3px solid transparent;
    }
    39.9%{    
    	color: transparent;
		background-color: transparent;
		box-shadow: 10px 10px transparent;
    	border: 3px solid transparent;
    }
    40%{    
    	color: #000;
		background-color: #fff;
		box-shadow: 10px 10px #4860ed;
    	border: 3px solid #000;
    }
    99.9%{    
    	color: #000;
		background-color: #fff;
		box-shadow: 10px 10px #4860ed; 
    	border: 3px solid #000;
    }
    100%{   
    	color: transparent;   
		background-color: transparent;
		box-shadow: 10px 10px transparent;
    	border: 3px solid transparent;
    }
}
