body {
	margin: 0;
	overflow: hidden;
	/* important to load the font */
	font-family: "Courier Prime";
	font-style: italic;

	background-color: #302020;
	color: #d0d0d0;
}

#screenbox {
	width: 960px;
	height: 720px;
	background-color: #000000;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	user-select: none;
	position: relative;
}

.titlebutton {
	position: absolute;
	text-align: center;

	background-color: #c4c8b7;
	color: #0a1000;

	font-family: "Courier Prime";
	font-style: italic;

	font-size: 70px;
	line-height: 75px;
	padding: 0 10px 5px 5px;

	min-width: 70px;
	min-height: 70px;

	border: 0;
	box-shadow: inset -5px -5px #62645b;
	border-radius: 10px;
}

#sceneSelectButton {
	right: 20px;
	bottom: 20px;
	font-size: 35px;
}

.titlebutton:hover:enabled {
	background-color: #d4d8c7;
}

.titlebutton:active:enabled {
	box-shadow: inset 5px 5px #62645b;
	background-color: #d4d8c7;
	padding: 5px 5px 0 10px;
}
.titlebutton:disabled {
	background-color: #444437;
	box-shadow: inset -5px -5px #31322d;
}

.fadeout {
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.25s linear, visibility 0.25s;
}

canvas {
	user-select: none;
}

.volumeBox {
	position: absolute;
	left: 4px;
	top: 4px;
	background-color: #a0a0a0;
	display: flex;
	align-items: center;
	border-radius: 12px;
	height: 24px;
	width: 24px;
	overflow: hidden;
	transition: width 0.5s ease;
}
.volumeBox:hover {
	width: 188px;
	transition: width 0.5s ease;
}
.volumeBox input {
	width: 160px;
	max-height: 20px;
}
.volumeBox img {
	margin: 2px;
	pointer-events: none;
}
