/*
----------
Directives
----------
*/

@font-face {
	font-family: 'Segoe UI';
	font-weight: 100;
	src: local('Segoe UI Light'), local('Segoe WP Light');
}

@font-face {
	font-family: 'Segoe UI';
	font-style: italic;
	font-weight: 100;
	src: local('Segoe UI Light Italic'), local('Segoe WP Light Italic');
}

@font-face {
	font-family: 'Segoe UI';
	font-weight: 300;
	src: local('Segoe UI Semilight'), local('Segoe WP Semilight'), local('Segoe UI');
}

@font-face {
	font-family: 'Segoe UI';
	font-style: italic;
	font-weight: 300;
	src: local('Segoe UI Semilight Italic'), local('Segoe WP Semilight Italic'), local('Segoe UI Italic');
}

@font-face {
	font-family: 'Segoe UI';
	font-weight: 400;
	src: local('Segoe UI'), local('Segoe WP');
}

@font-face {
	font-family: 'Segoe UI';
	font-style: italic;
	font-weight: 400;
	src: local('Segoe UI Italic'), local('Segoe WP Italic');
}

@font-face {
	font-family: 'Segoe UI';
	font-weight: 600;
	src: local('Segoe UI Semibold'), local('Segoe WP Semibold');
}

@font-face {
	font-family: 'Segoe UI';
	font-style: italic;
	font-weight: 600;
	src: local('Segoe UI Semibold Italic'), local('Segoe WP Semibold Italic');
}

/*
------------
Beaming Down
------------
*/

/*******
 * General
 *******/

::selection {
	text-shadow: none;
	color: #fff;
	background-color: #639;
	background-color: rebeccapurple;
}

html, body {
	margin: auto;
}

html {
	width: 640px;
	font: 300 1.125em/1.333 'Segoe UI', 'Open Sans', sans-serif;
}

body {
	width: 570px;
	text-shadow: 0 1px 1px #000;
	color: rgba(71, 173, 153, 0.65);
	background: #000 url(../images/c/bg.jpg) center top no-repeat;
}

header, main, footer {
	display: block;
}

a {
	text-decoration: none;
	transition: text-shadow 0.15s linear;
}

a:link {
	color: rgb(119, 255, 221);
}

a:visited {
	color: rgb(68, 204, 170);
}

a:hover, a:focus {
	text-shadow: 0 0 0.5em currentColor;
	outline: 0;
}

strong {
	font-weight: bold;
	color: rgba(71, 173, 153, 0.9);
}

/*******
 * Title and date
 *******/

header {
	margin-top: 98px;
}

header h1 {
	width: 570px;
	height: 140px;
	font-size: 4em;
	text-align: center;
	margin: 0;
}

header h1 a {
	display: block;
	position: relative;
	width: 570px;
	height: 140px;
	line-height: 110px;
}

header h1 a:hover, header h1 a:focus {
	text-shadow: none;
}

header h1 a small {
	display: block;
	font-size: 0.35em;
	line-height: 1em;
}

header h2 {
	display: block;
	position: relative;
	width: 570px;
	height: 50px;
	font-size: 2.2em; 
	text-align: center;
	text-transform: lowercase;
	margin: 20px auto;
}

header h1 a::after, header h2::after {
	display: block;
	position: absolute;
	width: 570px;
	top: 0;
	left: 0;
}

header h1 a::after {
	height: 140px;
	content: url(../images/c/title.png);
}

header h2::after {
	height: 50px;
	content: url(../images/c/date.png);
}

/*******
 * Content
 *******/

main {
	background-color: rgba(0, 0, 0, 0.4);
	margin-top: 20px;
	margin-bottom: 30px;
	border: 1px solid rgba(71, 173, 153, 0.25);
	border-radius: 15px;
	padding: 15px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

main p {
	margin: 1em 0 0 0;
}

main p:first-child {
	margin: 0;
}

/*******
 * Footer
 *******/

footer {
	font-size: 0.7em;
	text-align: center;
	color: rgba(71, 173, 153, 0.35);
	margin: 30px 0;
}

footer p {
	margin: 0;
}

footer a:link, footer a:visited {
	color: rgb(71, 173, 153);
}