body {
	background-color: #000000;
	margin: 0 auto;
	/*overflow: hidden;*/
	background-image: radial-gradient(ellipse farthest-corner at center top, #23233f 0%, #000000 60%);
}

#myCanvas {
	display: block;
}

#button1, #button2{
	font-family: "Gill Sans", "Gill Sans MT", Calibri, sans-serif;
	position: absolute;
	font-size: 24px;
	text-transform: uppercase;
	padding: 7px 20px;
	width: 200px;
	border-radius: 10px;
	color: white;
	text-shadow: -1px -1px 1px rgba(0, 0, 0, 0.8);
	border: 5px solid transparent;
	border-bottom-color: rgba(0, 0, 0, 0.35);
	background: hsla(260, 100%, 50%, 1);
	cursor: pointer;
	animation: pulse 1s infinite alternate;
	transition: background 0.4s, border 0.2s, margin 0.2s;
}

#button1:hover, #button2:hover {
	background: hsla(220, 100%, 60%, 1);
	margin-top: -1px;
	animation: none;
}

#button1:active, #button2:active {
	border-bottom-width: 0;
	margin-top: 5px;
}

@keyframes pulse {
	0% {
		margin-top: 0px;
	}
	100% {
		margin-top: 6px;
	}
}