html, body {
	width: 100%;
	height: 100%;
  	background-color: grey;
  	background-repeat: no-repeat;
	padding: 0px;
	margin: 0px;
	align: center;
	font-family: helvetica;
}

.logo {
	position: absolute;
    left: 250px;
    width: 600px;
    height: 450px;
    top: -79px;
}

.logo2 {
	position: absolute;
    left: 1000px;
    width: 400px;
    height: 350px;
    top: 70px;
}

#main {
	opacity: .6;
	height: 500px;
	width: 850px;
	top: 200px;
	left: 150px;
	position: absolute;
	margin: auto;
	border: 2px;
    border-radius: 25px;
   	overflow-y: scroll;
	background-color: black;
	box-shadow: 5px 5px 5px #97e300;
	box-shadow-opacity: .2;
}

#main .text {
	text-align: center;
	color: #97e300;
	font-size: 40px;
	font-weight: bold;
	position: relative;
	left: 50px;
	width: 700px;
	height: 280px;
	
	align: center;
}

#main .text2 {
	text-align: left;
	color: #97e300;
	font-size: 18px;
	position: absolute;
	left: 150px;
	width: 600px;
	height: 280px;
	top: 80px;
	word-wrap: break-word;
}

#footer {
	opacity: .6;
	height: 100px;
	width: 750px;
	top: 720px;
	left: 300px;
	margin: auto;
	position: absolute;
	border: 2px;
    border-radius: 25px;
	font-size: 18px;
	font-weight: bold;
	color: black;
}

#footer a {
	color: #97e300;
}

::-webkit-scrollbar {
    width: 10px;
    background: transparent; /* make scrollbar transparent */
}

/* Track */
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
    -webkit-border-radius: 10px;
    border-radius: 10px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: #97e300; 
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); 
}
::-webkit-scrollbar-thumb:window-inactive {
	background: #97e300; 
}
