@font-face {
	font-family: gothamBook;
	src: url('Gotham-Book.ttf');
}

@font-face {
	font-family: gothamMedium;
	src: url('Gotham-Medium.ttf');
}

body {
	margin: 0px;
	padding: 0px;
	background: #EFEFEF;
}

.title {
	width: 100%;
	height: 80px;
	text-align: center;
	background: #333;
	color: white;
	font-family: gothamMedium, Helvetica-Neue, Helvetica, Arial;
	font-size: 30px;
	line-height: 80px;
	letter-spacing: 10px;
	-moz-box-shadow: inset 0px 0px 50px #000000;
	-webkit-box-shadow: inset 0px 0px 50px #000000;
	box-shadow: inset 0px 0px 50px #000000;
}

.title .list {
	color: #C1C1C1;
}

.content {
	width: 1024px;
	margin: 50px auto;
	position: relative;
	font-family: gothamBook, Helvetica-Neue, Helvetica, Arial;
	position: relative;
}

img {
	text-align: center;
	width: 1024px;
	height: 576px;
	display: block;
	margin: 0 auto;
	z-index: 2147483647;
}

iframe {
	width: 1024px;
	height: 576px;
	margin: 0 auto;
	position: absolute;
	top: 0px;
	left: 0px;
	display: none;
}

.snippet {
	color: white;
	font-size: 60px;
	font-weight: normal;
	text-align: center;
	position: absolute;
	top: 130px;
	left: 100px;
}

.button {
	display: block;
	text-decoration: none;
	outline: none;
	width: 260px;
	height: 60px;
	font-size: 32px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	color: white;
	background: green;
	position: absolute;
	top: 340px;
	left: 200px;
	text-align: center;
	line-height: 60px;
	cursor: pointer;
	-webkit-transition: background 0.3s linear;
	-moz-transition: background 0.3s linear;
	-ms-transition: background 0.3s linear;
	-o-transition: background 0.3s linear;
	transition: background 0.3s linear;
}

.button:hover {
	background: #0F9A0F;
}

.contact {
	font-size: 10pt;
	text-align: center;
	margin: 10px auto;
}

.contact a {
	color: #666;
}

.contact a:hover {
	color: #000;
}

/* iPads (portrait and landscape) ----------- */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) {
	.content {
		width: 768px;
	}
	img {
		width: 768px;
		height: 432px;
	}
	iframe {
		width: 768px;
		height: 432px;
	}
	.snippet {
		font-size: 42px;
	}
	.button {
		width: 230px;
		height: 50px;
		line-height: 50px;
		font-size: 24px;
		-webkit-border-radius: 15px;
		-moz-border-radius: 15px;
		border-radius: 15px;
		top: 300px;
		left: 160px;
	}
}

/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {
	.content {
		width: 768px;
	}
	img {
		width: 768px;
		height: 432px;
	}
	iframe {
		width: 768px;
		height: 432px;
	}
	.snippet {
		font-size: 42px;
	}
	.button {
		width: 230px;
		height: 50px;
		line-height: 50px;
		font-size: 24px;
		-webkit-border-radius: 15px;
		-moz-border-radius: 15px;
		border-radius: 15px;
		top: 300px;
		left: 160px;
	}
}

