body {
	font-family: cambria;
}

a:link {
	text-decoration: none;
	color: white;
	text-shadow: 1px 1px red;
}

a:hover {
	opacity: 80%;

}

a:visited {
	text-decoration: none;
	color: white;
}
a:active {
	text-decoration: none;

}
.playlists {
	position: relative;
}

.listimage {
	opacity: 1;
	display: block;
	width: 100%;
	height: auto;
	transition: .5s ease;
	backface-visibility: hidden;
}

.middle {
	transition: .5s ease;
	opacity: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	text-align: center;	
}

.playlists:hover .listimage{
	opacity: 0.5;
}

.playlists:hover .middle{
	opacity:1;
}

.deck_img:hover .deck_text {
	display:block;
	font-size: 16px;
	color: white;
}
.pull_img:hover .pulls_text{
	display: block;
}

.deck_text {
	display: none;

}
.pulls_text{
	display: none;
}

/* scrollbar */
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: black;
}
::-webkit-scrollbar-thumb {
  background: darkred;
  border-radius: 5px;

}