html, body {
	color: rgb(255 255 255 / 60%);
	background-color: #212121;
	user-select: none;
	cursor: default;
}
* {
	font-family: Roboto, Verdana, Arial;
}
.center {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
}
.hidden {
	display: none;
}
h1 {
	font-size: 24px;
	margin: 0 0 8px 0;
	color: rgb(252 113 26);
}
p {
	margin: 0;
	font-size: 16px;
	max-width: 840px;
	text-align: center;
	line-height: 27px;
}
p:empty {
	display: none;
}
span {
	width: 0;
	display: inline-block;
}
button {
	border: none;
	border-radius: 6px;
	color: rgb(252 113 26);
	box-sizing: border-box;
	background-color: rgb(255 255 255 / 8%);
	padding: 6px 10px;
	font-weight: bold;
	font-size: 16px;
	cursor: pointer;
	margin-top: 8px;
	min-width: 120px;
	text-transform: uppercase;
	margin-right: 4px;
	margin-left: 4px;
}
button:focus, button:hover {
	outline: none;
	border: none;
	background-color: rgb(255 255 255 / 12%);
}
button:focus:hover {
	background-color: rgb(255 255 255 / 20%);
}
input {
	border: none;
	border-bottom: solid 1px rgb(255 255 255 / 60%);
	border-radius: 0;
	color: rgb(255 255 255 / 60%);
	box-sizing: border-box;
	background-color: transparent;
	padding: 5px 10px 6px 10px;
	font-size: 16px;
	margin-top: 8px;
	width: 200px;
	margin-right: 4px;
	margin-left: 4px;
}
input:focus {
	padding: 5px 10px;
	border-bottom: solid 2px rgb(252 113 26);
}
input:focus, input:hover {
	outline: none;
	background-color: transparent;
	color: rgb(255 255 255 / 80%);
}
input:hover {
	background-color: rgb(255 255 255 / 6%);
}
input:focus:hover {
	color: rgb(255 255 255 / 100%);
}
.selecable {
	user-select: text;
	cursor: auto;
}