* {
	padding: 0;
	margin: 0;
}

body, html {
	max-width: 100%;
	max-height: 100%;
	background-color: black;
	color: white;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	user-select: none;
}

canvas {
	width: 100%;
	height: 100%;
	position: absolute;
	display: block;
}

.ui {
	margin: auto;
	padding: 30px;
	font-size: 30px;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	width: 60%;
}

#score {
	display: none;
}

button:disabled {
	pointer-events: none;
	opacity: 0.1;
}

button {
	background-color: #005e00;
	color: #ffffff;
	padding: 6px 12px;
	margin: 22px auto;
	border-radius: 8px;
	border: none;
	display: block;
	cursor: pointer;
	font-size: 48px;
	box-shadow: 0px 10px #013501;
	font-weight: bold;
}

button:hover {
	background-color: #01f100;
}

button:active {
	background-color: #9af100;
}

h2 {
	text-align: center;
	padding: 18px;
	font-family: Helvetica, Verdana, sans-serif;
}

#score-text {
	padding: 10px;
	box-shadow: 4px 4px #40453e;
	text-align: center;
	border: 4px #ffffff solid;
	border-radius: 6px;
	font-weight: bold;
	max-width: 34vw;
	margin: auto;
}

.artistic {
	background: linear-gradient(to right top, #2a091c, #110510, #1d1020);
	position: relative;
	height: 100vh;
	width: 100%;
	overflow: hidden;
	animation: Gradient 20s ease infinite;
	background-size: 400% 400%;
}

@keyframes Gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.square {
	position: absolute;
	top: 80vh;
	left: 45vw;
	width: 5px;
	height: 5px;
	border: solid 1px #c8ffcf;
	background-color: #5f5344;
	transform-origin: top left;
	transform: scale(0) rotate(0deg) translate(-50%, 50%);
	animation: square 17s ease-in forwards infinite;
}

.square:nth-child(2n) {
	border-color: #fff;
}

.square:nth-child(2) {
	animation-delay: 2s;
	left: 25vw;
	top: 40vh;
}

.square:nth-child(2) {
	animation-delay: 1s;
	left: 10vw;
	top: 99vh;
}

.square:nth-child(3) {
	animation-delay: 5s;
	left: 13vw;
	top: 26vh;
}

@keyframes square {
	from {
		transform: scale(0) rotate(0deg) translate(-50%, 50%);
		opacity: 0.1;
	}
	to {
		transform: scale(20) rotate(960deg) translate(-50%, 50%);
		opacity: 0;
	}
}
