html, body {
	margin: 0;
	padding: 0;
	font-family: Quicksand;
	scroll-behavior: smooth;
}

a {
	color: black;

	-o-transition:.3s;
	-ms-transition:.3s;
	-moz-transition:.3s;
	-webkit-transition:.3s;
	transition:.3s;
}

a:hover {
	color: #2d77ef;
}

nav {
	text-align: center;
	padding: 10px;
}

nav ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

nav ul li {
	display: inline;
	margin: 0;
	padding: 15px;
}

nav ul li a {
	font-size: 24px;
	text-decoration: none;
}

main {
	margin-bottom: 200px;
}

main h2 {
	text-align: center;
	font-size: 32px;
	font-weight: 800;
	padding-top: 40px;
}

footer {
	text-align: center;
	margin-top: -80px;
	height: 80px;
}

.player-list:before {
	content: "Currently playing:";
}

.player-list ul{
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.player-list li{
	display: inline;
	margin: 0;
	padding: 5px;
}

.button {
	display: inline-block;
	width: 200px;
	height: 28px;
	background-color: #2d77ef;
	border: 1px solid #2d77ef;
	color: white;
	border-radius: 15px;
	padding: 16px;
	text-decoration: none;
	vertical-align: middle;
	font-size: 20px;

	-o-transition:.3s;
	-ms-transition:.3s;
	-moz-transition:.3s;
	-webkit-transition:.3s;
	transition:.3s;
}

.button:hover {
	background-color: transparent;
	color: #2d77ef;
}


#background-container {
	text-align: center;
	width: 100%;
}

#background-container h1 {
	font-size: 48px;
	font-weight: 800;
}

#hero-section {
	text-align: center;
}

#hero-section .hero-banner {
	display: block;
	width: 100%;
	height: 400px;
	background: url('http://placehold.it/1440x720') center center no-repeat;
	background-size: cover;
}

#hero-section .hero-banner-call-to-action {
	text-align: center;
	margin-top: -100px;
}

#hero-section .hero-banner-call-to-action .button {
	margin-left: 30px;
	margin-right: 30px;
}


#info-section {
	min-height: 400px;
	text-align: center;
	padding-left: 16px;
	padding-right: 16px;
	margin-bottom: 40px;
}

#spacer-section-1 {
	text-align: center;
}

#spacer-section-1 .hero-banner {
	display: block;
	width: 100%;
	height: 400px;
	background: url('http://placehold.it/1440x720') center center no-repeat;
	background-size: cover;
}

#spacer-section-2 {
	text-align: center;
}

#spacer-section-2 .hero-banner {
	display: block;
	width: 100%;
	height: 400px;
	background: url('http://placehold.it/1440x720') center center no-repeat;
	background-size: cover;
}

#register-section {
	height: 400px;
	text-align: center;
	padding-left: 16px;
	padding-right: 16px;
	margin-bottom: 40px;
}

#registrationError {
	color: crimson;
	text-align: center;
}

#contact-section {
	min-height: 400px;
	text-align: center;
	padding-left: 16px;
	padding-right: 16px;
}