@charset "utf-8";
/* CSS Document */

html {
    box-sizing: border-box;
}
*, *:before, *:after {
    box-sizing: inherit;
}
html, body {
	margin: 0;
	height: 100%;
	background-color: #aaa;
	font-family: Arial, Helvetica, "sans-serif";
	text-align: center;
}
.cf:before,
.cf:after {
    content:"";
    display:table;
}
.cf:after {
    clear:both;
}
#frame {
	position: relative;
	width: 80%;
	max-width: 1224px;
	height: 80%;
	margin: 0 auto;
	background-color: #fff;
	border: 8px solid black;
	border-radius: 10px;
	box-shadow:20px 20px 50px 15px grey;  
}
iframe {
	width: 100%;
	height: 100%;
}
h1 {
	font-family: 'Oswald', sans-serif;
	color: #545454;
	text-transform: uppercase;
	font-weight: normal;
}
p {
	margin-top: 2.5em;
}
a {
	background-color: #660066;
	padding: .45em 1em;
	border-radius: 5px;
	text-decoration: none;
	fontpsize: 1.25em;
	color: white;
	font-family: Arial, Helvetica, "sans-serif"
}
a:hover {
	opacity: .75;
}
