mainTitle {
	font-size: 100px;
	font-family: "arial black";
	color: green;
	text-shadow: 0px 0px black;
	transition: color 1s;
    position: absolute;
    top: 10%;
    left: 3%;
}

#mainDiv {
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0px;
}

#mainToolTitle {
    position: relative;
    top: 15%;
    left: 3%;
}

body {
	background-color: gainsboro;
    overflow-x: hidden;
}

img { 
    image-rendering: optimizeSpeed;             /* STOP SMOOTHING, GIVE ME SPEED  */
    image-rendering: -moz-crisp-edges;          /* Firefox                        */
    image-rendering: -o-crisp-edges;            /* Opera                          */
    image-rendering: -webkit-optimize-contrast; /* Chrome (and eventually Safari) */
    image-rendering: pixelated; /* Chrome */
    image-rendering: optimize-contrast;         /* CSS3 Proposed                  */
    -ms-interpolation-mode: nearest-neighbor;   /* IE8+                           */

}

#homeBody {
    background-image: linear-gradient(to right, gainsboro 40%, #dcdcdcdc 66%, transparent), url('Logos/BlurredBackground.png');
    background-size: 100%;
}

spc {
	text-shadow: 0px 0px black;
	transition: text-shadow 0.2s, color 0.2s;
}

spc:hover {
	text-shadow: 10px 10px black;
}

spc:onload {
    color: black;
}

selector {
	font-size: 20px;
	font-family: "arial black";
	color: green;
	position: fixed;
	width: 0px;
	left: 7%;
	background: green;
	background-size: 5%;
	transition: width 0.3s, color 0.3s;
	border-style: solid;
	border-color: gainsboro;
	border-radius: 8px;
}

selector:hover {
	width: 200px;
	color: white;
}

#games {
	top: 50%;
}

#tools {
	top: 60%;
}

#about {
	top: 70%;
}

infoBox {
    left: 30px;
    right: 30px;
    height: 40%;
    width: 90%;
    margin-top: 50px;
    margin-bottom: 25px;
    position: relative;
    display: block;
    border-color: green;
    border-style: solid;
    border-width: 5px;
    border-radius: 10px;
}

.boxTitle {
    color: green;
    position: absolute;
    font-family: monospace, monospace;
    font-size: 20px;
    left: 20px;
    top: 20px;
}

.boxImage {
    position: absolute;
    width: 200px;
    height: 200px;
    top: 20px;
    right: 20px;
}

.boxInfo {
    position: absolute;
    font-family: monospace, monospace;
    width: 60%;
    height: 80%;
    left: 20px;
    top: 60px;
}

.boxSelector {
    position: absolute;
    display: block;
    left: 20px;
    bottom: 20px;
}