body
{
	font-size: 20px;
	color: #CCC;
	background: #1C1C1C;
	font-family: Poppins, Helvetica, Verdana, Arial, Helvetica, sans-serif;
	font-size: 18px;
	margin: 2px;
	overflow-anchor: none;
}

.helvetica
{
	font-family: Helvetica, Verdana, Arial, Helvetica, sans-serif;
}

img
{
	border: 0;
}

a, a:visited, a:link
{
	color: #CDCDCD;
	cursor: pointer;
	text-decoration: none;
}

#parentContainer
{
	position: relative;
	min-height: calc(100vh - 5px);
}


a:hover
{
	text-decoration: underline;
}


div.page-title
{
	font-family: Helvetica;
	font-weight: normal;
	/*position: relative;*/
	background: #000;

	top: 0;
	z-index: 200;
	height: 70px;
	transition: height 0.5s;
}

div.page-title div.title img
{
	height: 50px;
	margin-top: 10px;
	margin-left: 10px;
	transition: height 0.5s;
}

div.main-container
{
	font-size: 0.8em;
	padding: 15px 10px;
	background: #1C1C1C;
}


div.footer-container
{
	clear: both;
	font-size: 0.8em;
	margin: 0;
	padding: 0;
	background: #090909;
	min-height: 70px;
	height: 70px;
	position: absolute;
	bottom: 0;
	width: 100%;
}

div.footer-container span.copyright
{
	color: #999;
	position: absolute;
	left: 20px;
	top: 25px;
}

div.footer-container span.credit
{
	color: #999;
	position: absolute;
	right: 20px;
	top: 25px;
}

div.footer-container span.credit a
{
	color: #AAA;
}

div.footer-container span.credit a:hover
{
	text-decoration: underline;
}


div.window
{
	text-align: auto;
	margin: 20px 0px 100px;
	padding: 20px 20px 20px;
	background-color: #CCAA77;
	background-color: #EFE;
	background-color: #FFF;
	background-color: #111;
	border: solid 1px #A99;
	border: solid 1px #333;
	border-radius: 5px;
	border-radius: 0px;
}

div.window div.window
{
	margin-bottom: 20px;
}

div.window div.window.last
{
	margin-bottom: 0;
}

div.window.round
{
	border-radius: 10px;
}

div.window h3
{
	color: #03C;
	color: #000;
	color: #F33;
	color: #FFF;
	font-size: 1.5em;
	margin: -20px -20px 20px;
	padding: 12px 20px;
	background-color: #000;
	border-bottom: 1px solid #222;
}

div.window h3.exp, div.window h4.exp
{
	background: none;
	margin: 10px 0 2px;
	padding: 0;
	border-bottom: none;
}

div.window h4
{
	color: #FFF;
	margin: 15px 0px 10px;
	padding: 5px 12px;
	background-color: #EF4A00;
	background-color: #D40;
	background-color: #222;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

#playerSongTitle {
	color: #999;
}

div.playerAndPlayListContainer {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 10px;
	& > div {
		max-width: 700px;
	}

	.player {
		margin: 0 auto;
	}

	.playList {
		border: #333 1px solid;
	}
}

ul.songSelection {
	padding: 0 4px;
	margin: 0;

	li {
		list-style: none;

		&.selected {
			a {
				background: #223;
			}
		}

		a {
			display: block;
			background: #334;
			padding: 8px 12px;
			margin: 0 0 8px;
			border: #333 1px solid;
			transition: all 0.3s linear;

			&:hover {
				text-decoration: none;
				background: #223;
			}
		}
	}
}

@media screen and (max-width: 1080px) {
	div.playerAndPlayListContainer {
		grid-template-columns: 1fr;

		.playList {
			min-width: 280px;
			margin: 10px auto;
		}
	}
}