@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@900&display=swap");

body {
	margin: 0;
	color: white;
	font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	cursor: pointer;
}
canvas {
	width: 100%;
	height: 100%;
}

#instructions,
#results {
	position: absolute;
	display: none;
	align-items: center;
	justify-content: center;
	height: 100%;
	width: 100%;
	background-color: rgba(20, 20, 20, 0.75);
}

body:hover #instructions,
#results {
	display: flex;
}

a:visited {
	color: inherit;
}

#results {
	cursor: default;
}

#score {
	position: absolute;
	color: white;
	font-size: 3em;
	font-weight: bold;
	top: 30px;
	right: 30px;
}

