body {
	color: black;
	font-family: 'Spectral', serif;
	text-align: center;
}

h1 {
	color: blue;
}

button {
	margin: 20px 0px;
	border: 2px solid rgb(50, 50, 50);
	display: inline-block;
	background-color: rgb(200, 200, 200);
}

button:hover {
	background-color: rgb(150, 150, 200);
	box-shadow: 0 0 20px rgb(100, 100, 100);
}