body{
	background-color:#fff;
	color: #000;
	margin: 0;
	width: 100%;
	height: 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*/

h2, p, li{
	font-family: orator-std, monospace;
}

h2{
	color: #555555;
	font-size: 3vh;
	font-weight: bold;
}

p, li{
	font-size: 2vh;
}

p{
	margin-top: 4vh;
	margin-bottom: 0;
}

body ul li{
	padding-top: 2vh;
}

p i{
	font-size: 2.75vh;
	font-weight: bold;
}

body ul{
	margin: 0;
}

body ul li{
	display: block;
	margin: 0;
}

.body{
	position: absolute;
	z-index: 5;
	height: 100%;
	width: 40%;
	left: 44%;
}

.bodyForward1{
	bottom: -50%;
  	animation: bodyForward1 60s linear 1;
  	animation-fill-mode: forwards;
}

.bodyLoop1{
	bottom: -200%;
  	animation: bodyLoop1 60s linear infinite;
}

.bodyLoop1b{
  	animation-delay: 30s;
}


/* --------------------------------------------------------------- BODY ANIMATION*/


@keyframes bodyForward1 {
  0% {
    bottom: -10%;
  }
  100% {
    bottom: 290%;
  }
}

@keyframes bodyLoop1 {
  0% {
    bottom: -160%;
  }
  100% {
    bottom: 140%;
  }
}



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

a{
	background-color: transparent;
	border: 3px solid #000;
	box-shadow: 10px 10px #00ff00;
	transition: box-shadow .15s;
		-o-transition: box-shadow .15s;
		-moz-transition: box-shadow .15s;
		-webkit-transition: box-shadow .15s;
	color: #000;
	font-family: orator-std, monospace;
	font-size: 1.1em;
	font-style: normal;
	font-weight: 100;
	font-weight: 400;
	margin:0;
	padding: 15px 25px;
	position: absolute;
	text-decoration: none;
	text-decoration: none;
	width: 20%;
	z-index: 30;
	right: 7%;
	bottom: 40%;
}

a:hover{
	background-color: #000;
	color: #fff;
	box-shadow: 0px 0px #00ff00;
	transition: box-shadow .5s;
		-o-transition: box-shadow .5s;
		-moz-transition: box-shadow .5s;
		-webkit-transition: box-shadow .5s;
}


/* --------------------------------------------------------------- GIF MARQUEE */

.gifScroll{
	position: absolute;
	z-index: -50;
	left: 5%;
	width: 34%;
	animation: gifLoop 60s linear infinite;
}

.gifScroll ul{
	display: block;
	padding: 0;
}

.gifScroll ul li{
	margin-top: 4vh;
}

.gifImg{
	width: 100%;
	border: #000 3px solid;
	box-shadow: 10px 10px #000;
}


/* --------------------------------------------------------------- GIF MARQUEE ANIMATION */

@keyframes gifLoop {
  0% {
    bottom: 100%;
  }
  100% {
    bottom: -607.5%;
  }
}


/* --------------------------------------------------------------- NICKEL */

.nickel{
	width: 80%;
	position: absolute;
	z-index: -75;
	left: -15%;
	bottom: 30%;
}

.penny{
	width: 80%;
	position: absolute;
	z-index: -75;
	left: -15%;
	top: 75%;
}













