@import url('https://fonts.googleapis.com/css?family=Fira+Sans:300,400');

body {
	background: #000 url('../images/bg.jpg') fixed center;
	background-size: cover;
	color: #ececf4;
	font-family: 'Fira Sans', sans-serif;
	font-weight: 300;
	font-size: 1.2em;
	width: 815px;
	margin: 0 auto 7em;
	position: relative;
	text-align: center;
	line-height: 2;
}
h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
	/*text-shadow: 0 0 4px black;*/
}
a:link,
a:visited {
	color: #ececf4;
	text-decoration: none;
}
img {
	width: 100%;
}
a img {
	border: none;
}
a:hover img {
}
a.button {
	border: 1px solid;
	border-radius: 2px;
	padding: 1em;
	font-weight: 400;
}
h1#title {
/*	text-align: left;
	text-indent: -999px;
	background: url('../images/heading.png') no-repeat center;
	background-size: contain;
	height: 123px;
	margin: 2em 0 0;
	text-align: center;*/
}
h2#subtitle {
	text-align: center;
	width: 52%;
	margin: 1em auto 2em;
	font-weight: 300;
}
ol {
	margin: 0 0 4em;
	padding: 0;
	list-style: decimal-leading-zero inside none;
}
ol li {
	margin: 0;
	padding: 0;
}
.left-column {
	float: left;
	width: 48%;
	margin-right: 2%;
}
.right-column {
	float: right;
	width: 48%;
}

.cd-picture {
	position: relative;
}
.cd-picture a::before {
	content: attr(title);

	font-size: 1.5em;

	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -5em;
	margin-top: -2em;
	width: 8em;

	border: 1px solid;
	border-radius: 2px;
	padding: 1em;
	font-weight: 400;

	background: black;
	text-shadow: 0 0 10px #ff8c37;
	
	opacity: 0;
	transition: opacity 2s;
}
.cd-picture a:hover::before {
	opacity: 1;
}

.player {
	display: inline-block;
	height: 25px;
	position: relative;
}
.player::before {
	display: inline-block;
	content: '♪';
	font-size: 1.2em;
	line-height: 1em
}
.player audio {
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
	transition: opacity 1s;
}
.player audio:hover {
	opacity: .5;
}
.player audio:active {
	opacity: 1!important;
}
