/* This is where custom CSS goes! */
html, body {
	overflow-x: hidden;
}
.post-title {
	display:none;

}

.header__inner {
	width: 1200px;
}

.post-content {

	text-align: center;

}
.hide {
	display:none;
}
.release {
	display: flex;
	flex-direction: column;
	justify-content:center;
	align-items:center;
	position: relative;
	text-align: center;
}

.release:hover .overlay {
	opacity: 1;
}


.overlay {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: absolute;
	width: 447px;
	height: 396px;
	bottom: 50px;
	opacity: 0;
	transition: .5s ease;
	background-color: black;
}

.cover-art-image{
	padding-bottom: 50px;

}

.cover-art {
	display: flex;
	justify-content: center;
	align-items: center;
}

.promo-text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #FFFFFF;
}

.promo-text h1 {
	padding-top: 50px;
}

.logo img {

	width: 150px;
	height: 100px;
}

.homepage-text {
	color: #fff;
}

.background-image {
	background-position: top;
}

.header {
	padding: 0;
	height: 100px;
}

.footer {
		padding-left: 0;
		padding-right: 0;
}

.footer__content {
	height: auto;
	margin: 0 auto;
	color: #fff;
}

.content {
		animation: fadeInAnimation ease 2s;
		animation-iteration-count: 1;
		animation-fill-mode: forwards;
}

.menu-trigger {
	margin-right: 20px;
}

.menu {
	top: 100px;
}

#mc_embed_signup{
	background:#fff;
	clear: right; 
	font:14px Helvetica,Arial,sans-serif; 
	width: 600px;
	height: auto;
	margin: 0 auto;
}

.spotify-button {
	padding-top: 100px;
}

.spotify-button a {
	display: flex;
	align-items: center;
	text-decoration: none;
	background-color: #1DB954;
	color: white;
	font-size: 16px;
	font-weight: bold;
	padding: 10px 20px;
	border-radius: 50px;
	transition: background-color 0.3s ease;
}

.spotify-button a:hover {
	background-color: #1aa34a;
}

.spotify-logo {
	width: 20px;
	height: 20px;
	margin-right: 10px;
}

@keyframes fadeInAnimation {
		0% {
				opacity: 0;
		}

		100% {
				opacity: 1;
		}
}

@media (max-width: 684px) {
		.menu {
				width: 100%;
		}
}


