html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b, u, i,
center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	padding: 0;
	margin: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
}

html * {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

body {
	background-image: url(images/background.png);
	background-position: center top;
	background-size: 100% auto;
	background-repeat: no-repeat;
	background-color: #2a2227;
}

.title-wrapper {
	width: 100%;
	max-width: 467px;
	margin: 50px auto;
	padding: 0 20px;
}

.title-wrapper img {
	display: block;
	width: 100%;
	height: auto;
	margin: auto;
}

.iframe-wrapper {
	position: relative;
	width: 90%;
	max-width: 1000px;
	margin: 50px auto;
	padding: 20px;
	background: url(images/video-frame.png) no-repeat center center;
	background-size: 100% 100%;
}

.iframe-ratio {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 0;
	padding: 0 0 56.25%;
}

.iframe-wrapper iframe {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	margin: auto;
}

.link-wrapper {
	width: 90%;
	margin: 50px auto;
	text-align: center;
}

.link-wrapper a {
	display: inline-block;
	position: relative;
	margin: 0 10px;
	padding: 10px 20px;
	font-family: 'VT323', monospace;
	font-size: 24px;
	letter-spacing: 1.5px;
	text-decoration: none;
	background: #000;
	color: #fff;
	box-shadow: 0 15px 15px rgba(0, 0, 0, 0.15);
}

.link-wrapper a:after {
	content: " ";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	box-shadow:
	6px -3px 0 0 #fff,
	6px 3px 0 0 #fff,
	-6px -3px 0 0 #fff,
	-6px 3px 0 0 #fff,
	0 6px 0 0 #fff,
	0 -6px 0 0 #fff;
}

.link-wrapper a:hover {
	background: #fff;
	color: #000;
}

.link-wrapper.demo-btn a {
	font-size: 60px;
	color: #ff3;
}

.link-wrapper.demo-btn a:hover {
	color: #000;
}

.link-wrapper.demo-btn a:after {
	box-shadow:
	6px 3px 0 0 #fff,
	6px -3px 0 0 #fff,
	-6px 3px 0 0 #fff,
	-6px -3px 0 0 #fff,
	0 6px 0 0 #fff,
	0 -6px 0 0 #fff;
}

.logo-wrapper {
	width: auto;
	margin: 30px auto;
	padding: 0;
}

.logo-wrapper img {
	display: block;
	width: 100px;
	height: auto;
	margin: auto;
}

@media (max-width: 768px) {
	.link-wrapper.social-btns a {
		display: block;
		max-width: 200px;
		margin: 0 auto 20px;
	}

	.link-wrapper.demo-btn a {
		font-size: 36px;
	}
}