
@font-face {
	font-family: "CODEFONT";
	src: url("CODE-Light.otf");
}
@font-face {
	font-family: "CODEFONT";
	src: url("CODE-Bold.otf");
	font-weight: bold;
}

html, body {
	height: 100%;
	margin: 0px;
	padding: 0px;
	
	font-family: CODEFONT, sans-serif;
	background-color: #F54;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#F65), to(#F22));
	background-image: -webkit-linear-gradient(top, #F65, #F22);
	background-image:    -moz-linear-gradient(top, #F65, #F22);
	background-image:     -ms-linear-gradient(top, #F65, #F22);
	background-image:      -o-linear-gradient(top, #F65, #F22);
	background-image:         linear-gradient(to bottom, #F65, #F22); /* current standard, but unimplemented and subject to change */
	background-attachment: fixed;
	color: #FFF;
	text-shadow: 1px 1px 5px #d00000;
}

.fade-in {
	opacity: 0;
	-webkit-transition: opacity 0.5s linear;
	-moz-transition: opacity 0.5s linear;
	-ms-transition: opacity 0.5s linear;
	-o-transition: opacity 0.5s linear;
	transition: opacity 0.5s linear;
}

#container {
	position: relative;
	
	width: 200%;
	height: 100%;
}

#scroller {
	height: 100%;
}

.student-countdown {
	width: 50%;
	height: 100%;
	text-align: center;
	display: inline-block;
	float: left;
	position: relative;
	z-index: 1;
}

.counter {
	font-weight: bold;
	font-size: 100px;
}

.legend {
	font-size: 100px;
	
}

#mg-logo {
	position: fixed;
	right: 10px;
	bottom: 10px;
	opacity: 0.2;
}
