* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

#canvas1 {
	border: 5px solid black;
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%, -50%);
	max-width: 100%;
	max-height: 100%;
}

#player {
	display: none;
}

body {
	background-color: rgb(85, 205, 221);
}

#text {
	text-align: center;
	font-size: 48px;
	font-family: "Comic Sans MS", "Comic Sans", cursive;
	color: rgb(243, 36, 36);
}