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

iframe{
	border: none;
}

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


/* --------------------------------------------------------------------------- COMPUTER TEXT */

.computerWrapper{
	width: 70%;
	height: 40%;
	position: absolute;
	top: 30%;
	left: 30%;
	z-index: 1;
}

h1{
	color: #000;
	font-family: 'paralucent-condensed', sans-serif;
	font-size: 6vw;
	font-style: normal;
	line-height: 1.4;
	margin: 0;
	padding: 0;
}


/* --------------------------------------------------------------------------- IMAGE */

img{
	position: absolute;
	z-index: 2;
	width: 100%;
	left: 11.5%;
	top: 13%;
}

.dollarIMG{
	width: 88%;
}


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

a{
	background-color: #14b6ce;
	box-shadow: 10px 10px #000;
    border: 3px solid #000;
	color: #fff;
	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;
}

.userButton1 a{
	top: 2%;
	animation: userButtonAnim 4s infinite linear;
}

.userButton2 a{
	bottom: 10%;
	animation: userButtonAnim2 3.5s infinite linear;
}

.userButton2 a:hover, .userButton1 a:hover{
	color: #000;
}

@keyframes userButtonAnim{
	0%{
		right: 0%;
	}
	8%{
		right: 4%;
	}
	8.1%{
		right: 15%;
	}
	20%{
		right: 21%;
	}
	20.1%{
		right: 34%;
	}
	44%{
		right: 46%;
	}
	44.1%{
		right: 50%;
	}
	66%{
		right: 61%;
	}
	66.1%{
		right: 87%;
	}
	82%{
		right: 95%;
	}
	82.1%{
		right: 100%;
	}
	100%{
		right: 109%;
	}
}

@keyframes userButtonAnim2{
	0%{
		left: 0%;
		width: 20%;
	}
	14%{
		left: 4%;
		width: 20%;
	}
	14.1%{
		left: 15%;
		width: 40%;
	}
	33%{
		left: 21%;
		width: 40%;
	}
	33.1%{
		left: 34%;
		width: 60%;
	}
	59%{
		left: 46%;
		width: 60%;
	}
	59.1%{
		left: 50%;
		width: 80%;
	}
	74%{
		left: 61%;
		width: 80%;
	}
	74.1%{
		left: 87%;
		width: 100%;
	}
	97%{
		left: 95%;
		width: 100%;
	}
	97.1%{
		left: 100%;
		width: 100%;
	}
	100%{
		left: 109%;
		width: 100%;
	}
}











