* {
	border: none;
	outline: none;
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-webkit-font-smoothing: subpixel-antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-user-select: none;
	user-select: none;
}
body {
	background-color: #2a333c;
	font: 17px/17px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	color: #eee;
}
input, textarea, button, td {
	font: inherit;
	color: inherit;
}
topbar {
	position: fixed;
	display: flex;
	inset: 0 0 auto;
	height: 50px;
	background-color: #1d242a;
	padding: 0 20px;
	align-items: center;
}
topbar img.toplogo {
	display: block;
	height: 40px;
}
main {
	position: fixed;
	display: block;
	inset: 50px 0 0;
	padding: 20px;
	text-align: center;
}
img.productimage {
	width: 400px;
	height: auto;
}
h1 {
	color: #94fe02;
	font-size: 40px;
	line-height: 45px;
	margin-bottom: 10px;
}
p.productdescription {
	margin-top: 5px;
}
div.price {
	padding: 10px;
	background-color: #222;
	font-size: 30px;
	line-height: 30px;
	width: fit-content;
	margin: 10px auto;
}
button {
	padding: 10px 20px;
	background-color: #93fd04;
	margin-top: 10px;
	cursor: pointer;
	color: #000;
}
button:hover {
	background-color: #f0fc06;
}