html, body {
	margin: 0;
	overflow: hidden;
}

body {
	background-color: #222;
	width: 100vw;
	height: 100vh;
	background-image: url("https://images.pexels.com/photos/589821/pexels-photo-589821.jpeg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	user-select: none;
	font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

#container {
	height: 0; /* this is just so that it doesn't interfere with the canvas clicking */
}

#settings {
	position: fixed;
	top: 0;
	right: 0;
	margin: 1rem;
	opacity: 0.4;
	cursor: pointer;
	transition: opacity 100ms;
	z-index: 10;
}

#settings:hover {
	opacity: 1;
}

.leaf {
	position: absolute;
}

#settingsPanel {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.8);
	
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

#settingsContent {
	width: 600px;
	max-width: 100vw;
	
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: white;
	
	padding: 2rem;
}

input[type="range"] {
	width: 200px;
	margin: 0;
}

datalist {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	writing-mode: vertical-lr;
	width: 200px;
}

#quoteBox {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	
	background-color: rgba(0, 0, 0, 0.5);
	
	display: flex;
	justify-content: center;
	align-items: center;
	
	box-sizing: border-box;
	padding: 2rem;
	
	color: white;
	font-family: Garamond, Georgia, "Times New Roman", Times, serif;
	font-size: 10vmin;
	text-align: center;
}

canvas {
	position: fixed;
	top: 0;
	left: 0;
}

.hidden {
	display: none!important;
}
