
html, body {
	margin: 0;
	padding: 0;
}

html {
	background-color: #000;
}

body {
	color: #FFF;
	font-family: 'Nunito', sans-serif;
	text-align: center;
}

a {
	color: #FFF;
}

h1 {
	font-weight: 300;
	font-size: 54px;
	text-align: center;
	margin: 0;
	display: none;
}

h2 {
	position: relative;
	line-height: 1em;
}

h2:before, h2:after {
	display: inline-block;
	position: relative;
	top: -0.3em;
	content: "";
	width: 30px;
	height: 1px;
	background: #FFF;
	margin: 0 10px;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 400;
	text-transform: uppercase;
}

.cf:before,
.cf:after {
    content: " ";
    display: table;
}

.cf:after {
    clear: both;
}

#black-overlay {
	display: block;
	background: rgba(0,0,0,0.65);
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -99;
}

#bgvid { 
	bottom: 0;
    height: 100%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: -100;
    background: url('./videobg.png') no-repeat;
    background-size: cover;
}

.container {
	width: 100%;
	max-width: 1000px;
	margin: 100px auto 0;
	position: relative;
}

.logotype {
	width: 100%;
	padding: 0 60px;
	box-sizing: border-box;
}

.content-container {
	width: 360px;
	margin: 60px auto 0;
}

.albumart {
	max-width: 100%;
	border: solid 1px rgba(255,255,255,0.5);
}

.albumtitle {
	margin-top: 6px;
	line-height: 1.2em;
}

.musiclinks {
	display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.musiclinks a {
	flex-basis: 12%;
}

.musiclinks img {
	max-width: 100%;
	margin: 0 0 18px;
	max-height: 40px;
}

.social {
	display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
}

.social:before {
	display: block;
	content: "";
	width: 100%;
	height: 1px;
	background: rgba(255,255,255,0.5);
	margin: 0 0 20px;
}

.social a {
	flex-basis: 10%;
}

.social img {
	max-width: 100%;
	margin: 0 0 18px;
	max-height: 40px;
}


@media screen and (max-width: 640px) {
	h1 {
		font-size: 32px;
	}

	body {
		background: url('./videobg.png') #000 no-repeat 50% 50% fixed;
		background-size: 90% auto;
	}

	#bgvid {
		display: none;
	}

	#black-overlay {
		z-index: 0;
	}
}



