/*
    font-family: 'Roboto Condensed', sans-serif;
    font-family: 'Source Sans Pro', sans-serif;
*/

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	border: 0;
}
body {
	background-color: #525453;
	margin: 0;
	padding: 0;
}
.container {
	position: relative;
	max-width: 1200px;
	height: auto;
	margin: 0 auto;
	padding: 25px 0 0 0;
}
.nav-bar {
	position: relative;
	width: 100%;
	height: 100px;
	margin-top: 50px;
	background-color: rgba(37, 34, 40, 0.77);
	z-index: 2;
}
.nav-logo {
	position: relative;
	top: -25px;
	left: 25px;
	margin: -25px 0 0 0;
	width: 100px;
}
.nav-bar-nav {
	display: inline;
	float: right;
	list-style: none;
	margin-top: -70px;
	margin-right: 50px;
	width: auto;
}
.nav-item {
	margin-left: 50px;
	display: inline;
}
.nav-item a {
	text-decoration: none;
	color: white;
	font-size: 24px;
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 400;
	letter-spacing: 0.0250em;
}
.content {
	position: relative;
	width: 100%;
	height: auto;
	margin: 0 auto;
	z-index: 1;
	overflow: auto;
}
.title-bar, .footer-bar {
	width: 100%;
	height: 100px;
	background-color: rgba(37, 34, 40, 0.5);
	overflow: hidden;
}
.title-bar h1 {
	color: white;
	font-size: 48px;
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 400;
	letter-spacing: 0.0250em;
	margin: 15px 0 0 270px;
}
.left-col {
	position: absolute;
	background-color: rgba(37, 34, 40, 0.7);
	width: 300px;
	left: 0;
	top: 0;
	height: 100%;
	z-index: 0;
}

.releases {
	width: 100%;
	text-align:right;
	height: 100%;
	margin-bottom: -30px;
}
.release-item {
	position: relative;
	width: 300px;
	height: 300px;
	margin-left: 25px;
	margin-bottom: 25px;
	display: inline-block;
}
.release-item:hover .release-item-text { display: none; }
.release-item-text {
	position: absolute;
	width: 300px;
	height: 90px;
	left: 0;
	top: 210px;
	background-color: rgba(37, 34, 40, 0.77);
	text-align:left;
	color: #999999;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 18px;
	font-weight: 600;
	line-height: 20px;
	padding: 12px 0 0 18px;
}
.item-text-artist {
	color: white;
}
.release-item-pic {
	position: absolute;
	width: 300px;
	height: 300px;
	left: 0;
	top: 0;
}
