body {
	font-family: 'Kanit', sans-serif;
	display:flex;
	flex-direction: column;
	padding: 0 30px 0 30px;
	color:#f8f8f2;
}

h1, h2 {
	background-color: #44475a;
	padding:10px;
}
h1 {
	font-size: 50px;
}
h2 {
	font-size: 40px;
}

sub {
	font-size: 15px;
	background-color: #44475a;
	padding:10px;
}

.specification {
	background-color: rgba(0, 0, 0, 0.3);
	color:#bd93f9;
	display: inline;
	font-family: monospace;
	font-weight: 100;
}

ul {
	list-style:none;
	border-left: solid;
	border-color: 	#6272a4;
	padding-left: 15px;
}
ul li {
	font-weight: bold;
}
ul li ul li {
	font-weight: 100;
}

.content {
	display: flex;
}
@media (orientation: portrait) {
	.content {
		flex-direction: column;
	}
}
.left, .right {
	padding: 10px;
	box-sizing: border-box;
}
.left {
	flex:1;
}
.right {
	flex:1;
}

canvas {
	background-color: transparent;
	position: fixed;
	left:0;
	top:0;
	width:100%;
	height:100%;
	z-index: -1;
	background-color: #282a36;
}

.colorPicker {
	position: fixed;
	top:0;
	right: 0;
	width:30px;
	height:30px;
	margin:10px;
}

.coverScreen {
	background-color: 	#282a36	;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.coverScreen > button {
	border: none;
	padding: 10px;
	font-family: 'Kanit', sans-serif;
	transition: 0.2s;
	background-color: #6272a4	;
	color: #f8f8f2	;
	border: none;
}
.coverScreen > button:hover {
	padding: 12px;
}
.coverScreen > button:active {
	opacity: 0.8;
}

.coverScreen {
	transition: 0.5s;
	transform-origin: left;
}

.backbutton {
	display: flex;
	justify-content: right;
	font-size: 25px;
}