body, html
{
	height: 100%;
	margin: 0;
	background-color: #DDDDDD;
}
.background
{
	padding-top: 50px;
	background-color: #131619;
	box-shadow: 0 10px 50px grey;
}
.logo
{
	display: block;
	margin: 0 auto;
	width: 30%;
}
.announcement
{
	font-family: 'Montserrat', sans-serif;
	color: #131619;
	margin: 0 auto;
	width: 100%;
	text-align: center;
	font-size: 400%;
	padding-top: 4%;
	padding-bottom: 4%;
}
.announcementText
{
	position: relative;
	width: 50%;
	float: left;
	text-align: right;
}
.announcementTime
{
	position: relative;
	text-align: left;
	margin-left: 200px;
}
.content
{
	background-color: #FFFFFF;
	width: 60%;
	margin: 0 auto;
	margin-bottom: 2%;
	box-shadow: 0px 0px 50px #777777;
}
.watch
{
	width: 100%;
	transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.watch:hover
{
	transform: scale(1.1, 1.1);
}
.watchDiv
{
	width: 98%;
	padding: 1%;
}
.watchDiv2
{
	overflow: hidden;
}
.watchText
{
	font-family: 'Lato', sans-serif;
	font-size: 150%;
	color: #131619;
	padding: 20px 30px;
}
.footer
{
	width: 100%;
	background-color: #131619;
	color: #DDDDDD;
	font-family: 'Lato', sans-serif;
	font-size: 120%;
	text-align: center;
	padding: 30px 0px;
	box-shadow: 0 -10px 50px grey;
}
.timerBoxLarge
{
	height: 300px;
	width: 300px;
	position: relative;
	display: inline-block;
}
.timerBoxSmall
{
	height: 200px;
	width: 200px;
	position: relative;
	display: inline-block;
}
.timerValueSmall
{
	font-family: 'Montserrat', sans-serif;
	font-size: 60px;
	font-weight: 700;
	text-align: center;
	margin-top: 65px;
}
.timerValueLarge
{
	font-family: 'Montserrat', sans-serif;
	font-size: 100px;
	font-weight: 700;
	text-align: center;
	margin-top: 65px;
}
.timerTextSmall
{
	font-family: 'Montserrat', sans-serif;
	font-size: 20px;
	font-weight: 500;
	text-align: center;
	text-transform: uppercase;
}
.timerTextLarge
{
	font-family: 'Montserrat', sans-serif;
	font-size: 30px;
	font-weight: 700;
	text-align: center;
	text-transform: uppercase;
}
.timerDaysCircleLarge
{
	width: 300px;
	height: 300px;
	position: absolute;
	display: inline-block;
	left: 50%;
	margin-left: -150px;
}
.timerDaysCircleSmall
{
	width: 200px;
	height: 200px;
	position: absolute;
	display: inline-block;
	left: 50%;
	margin-left: -100px;
	margin-top: 20px;
}
.timers
{
	display: table;
	margin: 0 auto;
}
.countdown
{
	margin: 0 auto;
}
.overlay
{
	width: 100%;
	height: 100%;
	margin: 0;
	position: fixed;
	z-index: 2;
	pointer-events: none;
}
.header
{
	position: fixed;
	width: 100%;
	display: table;
	background-color: #333;
	border-bottom: 2px solid rgb(127, 127, 127); /* for browsers that can't handle rgba */
	border-bottom: 2px solid rgba(255, 255, 255, 0.5);
	background-clip: padding-box; /* for IE9+, Firefox 4+, Opera, Chrome */
	-webkit-background-clip: padding-box; /* for Safari */
	z-index: 3;
	box-shadow: 0 -10px 50px black;
}
.nav
{
	display: table;
	margin: 0 auto;
}
ul
{
	list-style-type: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	background-color: #333;
	float: center;
}
li
{
	float: left;
}
li a
{
	display: block;
	color: #DDD;
	font-family: 'Montserrat', sans-serif;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
	font-size: 17px;
}
li a:hover
{
	color: #666;
}