*, *::before, *::after {
	box-sizing: border-box;
	font-family: sans-serif;
}

html, body {
	margin: 0;
	padding: 0;
	background: #121;
	color: #FEE12B;
	height: 100%;
	width: 100%;
}

.main-content {
	height: calc(100% - 60px);
	width: 100%;
	position: relative;
}

.current-and-playlist {
	height: 100%;
	width: 100%;
	display: flex;
}

.current-song {
	height: 100%;
	flex-grow: 1;
	position: relative;
}

.current-song-image-background {
	object-fit: cover;
	height: 100%;
	width: 100%;
	filter: blur(10px);
}

.current-song-image {
	object-fit: contain;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.controls {
	height: 60px;
	width: 100%;
	position: fixed;
	bottom: 0;
	background: #CCC;
	color: #121;
	padding: 10px;
}

