.unselectable {
	-moz-user-select: -moz-none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    user-select: none;
}

* {
	font-family: Arial;
	padding: 0;
	margin: 0;
}

body {
	height: 100vh;
	width: 100vw;
	background: #f5f5dc;
	overflow: hidden;
}

#wrapper {
	display: flex;
	flex-direction: column;
	height: 300px;
	width: 80%;
	min-width: 300px;
	max-width: 800px;
	background: white;
	margin: auto;
	position: absolute;
	inset: 0;
	box-shadow: 0 0 8px 3px rgb(0, 0, 0, .6);
	justify-content: center;
}

#wrapper > h1 {
	display: block;
	width: 100%;
	text-align: center;
}

#wrapper > h2 {
	display: block;
	width: 100%;
	text-align: center;
}
