/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
	padding: 0;
	margin: 0;
	height: 100%;
	background: #000;
	color: #FFF;
	font-family: Calibri, Arial, sans-serif;
	border-top: 6px dashed yellow;
	box-sizing: border-box;
}

.page h1:first-child {
	margin-top: 0;
}

iframe {
	border: none;
	height: 100%;
	width: 100%;
}

.page {
	padding: 24px;
}

img {
	max-width: 100%;
}

a {
	color: yellow;
}

.avatar {
	width: 200px;
	height: 200px;
}

.wrapper {
	position: relative;
	top: 50%;
	margin: auto;
	margin-top: -200px;
	width: 850px;
	height: 400px;
}

.sidebar {
	float: left;
	width: 200px;
	height: 100%;
}

.main {
	float: right;
	width: 630px;
	height: 100%;
	border: 3px double yellow;
	box-sizing: border-box;
}

.menu {
	padding: 24px;
	text-align: center;
}

.menu a {
	display: inline-block;
	padding: 3px 6px;
	color: yellow;
	margin-bottom: 6px;
	text-decoration: none;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.menu a:hover {
	background: yellow;
	color: #000;
}

h1, h2, h3, h4 {
	color: yellow;
}

h1 {
	font-size: 20px;
	background: yellow;
	color: #000;
	display: inline-block;
	padding: 4px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

h2 {
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 16px;
	border-bottom: 1px dashed yellow;
	padding-bottom: 4px;
}