h1, h2, p {
    font-family: 'Andale Mono', monospace;
}
p {
    font-size: 1.1em;
}
#clear {
	height: 12vw;
}
.bodysection {
    margin: 0 15vw 1vw 20vw;
    font-family: 'Andale Mono', monospace;
}

.bodysection a {
    color: rgba(94, 154, 219, 1);
}

#box {
	position: relative;
	width: 200px;
	height: 148px;
	transition: all .2s ease-in-out;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
}
#box:hover {
	transform: scale(1.3);
	-webkit-transform: scale(1.3);
	-moz-transform: scale(1.3);
}
#box img {
	position: relative;
	top: 0;
	width: 200px;
	height: 148px;
}
#box a {
	text-decoration: none;
	color: black;
}
#textbox {
	width:200px;
	height: 148px;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	background-color: rgba(225, 225, 225, 0.85);
	box-shadow: 0px 0px 15px 2px rgba(255, 255, 255, 0.85);
	-webkit-box-shadow: 0px 0px 15px 2px rgba(255, 255, 255, 0.85);
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}
#textbox:hover {
	opacity: 1;
}
#text {
	font-family: 'Open Sans', sans-serif;
	font-size: 0.8em;
	padding-top: 0.5em;
	text-align: center;
	margin: 0;
}

/*  SECTIONS  */
.section {
	clear: both;
	padding: 0px;
	margin: 0px;
}

/*  COLUMN SETUP  */
.col {
	display: block;
	float:left;
	margin: 1% 0 2% 2%;
}
.col:first-child { margin-left: 2.5%; }


/*  GROUPING  */
.group:before,
.group:after {
	content:"";
	display:table;
}
.group:after {
	clear:both;
}
.group {
    zoom:1; /* For IE 6/7 */
}
/*  GRID OF ONE    */
.span_1_of_1 {
	width: 100%;
}
/*  GRID OF TWO    */
.span_2_of_2 {
	width: 50%;
}
.span_1_of_2 {
	width: 30%;
}
/*  GRID OF THREE  */
.span_3_of_3 {
	width: 30%;
}
.span_2_of_3 {
	width: 30%;
}
.span_1_of_3 {
	width: 30%;
}

/*  GO FULL WIDTH AT LESS THAN 480 PIXELS */

@media only screen and (max-width: 480px) {
	#clear { height: 6vw; }
	.col:first-child { margin-left: 3em; }
	.col { margin: 0 0 2em 3em;}
	.span_1_of_1 { width: 65%; }
	.span_1_of_3, .span_2_of_3, .span_3_of_3, .span_1_of_2, .span_2_of_2 { width: 100%; }
	#box:hover {
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);}
	#text {font-size: .8em;}
}