* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
	font-family: 'Work Sans'
}
html {
	overflow-y: hidden;
}

#container {
	position: absolute;
	left: 0;
	top: 0;
}

#main {
	position: relative;
	width: 100vw;
	height: 200px;
	z-index: 1;
	text-align: center;
}

#updating {
	display: flex;
	flex-direction: row;
	justify-content: center;
}

#labels {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-right: 30px;
	margin-left: 30px;
}

#AutoPlay {
	margin-bottom: 10px;
}

#labels span {
	margin-bottom: 10px;
}

.changeButton {
	width: 70px;
	height: 25px;
	background-color: transparent;
	border: 2px solid white;
	color: white;
	border-radius: 10px;
	margin-left: 7px;
	margin-right: 7px;
	cursor: pointer;
}

.changeButton:hover {
	background-color: rgba(255, 255, 255, 0.3);
}

#main h1 {
	color: #FFF;
	font-size: 100px;
}

#credits a {
	text-decoration: none;
	color: #FFF;
	text-decoration: underline;
}

#main span {
	color: white;
}

#credits {
	position: absolute;
	bottom: 0;
	left: 0;
	color: #FFF;
	font-size: 15px;
	margin-bottom: 5px;
	margin-left: 5px;
}

@media all and ( max-width: 640px ) {
	.lil-gui.root { 
		right: auto;
		top: auto;
		max-height: 50%;
		max-width: 80%;
		bottom: 0;
		left: 0;
	}
}