* {
	margin: 0;
	padding: 0;
}
html, body {
	height: 100% !important;
	padding: 0 !important;
}
body {
	background: black;
	font-family: "Balsamiq Sans", Monospace;
}
.startScreen {
	margin: auto;
	padding: 50px;
	width: 100vmin;
	text-align: center;
	color: white;
	font-size: 30px;
	box-sizing: border-box;
}
.startScreen > * {
	margin: 20px;
	animation: bobble 4s ease infinite;
}
@keyframes bobble {
	from, 50%, to {
		transform: none;
	}
	25% {
		transform: rotate(-15deg) scale(1.1);
	}
	75% {
		transform: rotate(15deg) scale(1.1);
	}
}
.startScreen button {
	padding: 10px;
	width: auto;
	height: auto;
	font-family: "Balsamiq Sans", Monospace;
	font-size: inherit;
	border-radius: 6px;
	background: #CDAA7D;
	border: 3px solid #A48864;
}
.startScreen .turtleAnimation {
	background-image: url(assets/turtleSpritesheet.png);
	background-position: 0 0;
	background-size: 1520px 280px;
	width: 380px;
	height: 280px;
	image-rendering: pixelated;
	animation: turtleAnimation 1.1111s steps(4) infinite;
	display: inline-block;
}
@keyframes turtleAnimation {
	from {
		background-position: 0 0;
	}
	to {
		background-position: -1520px 0;
	}
}
.container {
	height: 100%;
	padding: 0 !important;
	text-align: center;
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	background: -webkit-linear-gradient(-90deg, #EC9F05 0%, #FF4E00 74%);
}
.container2 {
	margin: auto;
	padding: 0 !important;
	position: relative;
	width: 100vmin;
	height: 100vmin;
}
canvas {
	background-image: url(assets/background.png);
	background-size: 100% 100%;
	image-rendering: pixelated;
}
.pauseBtn {
	color: white;
	font-size: 4vmin;
	position: absolute;
	right: 5px;
	top: 0;
	background: none;
	border: none;
}
.alertBtn {
	padding: 13px 26px;
	background: #2F85D5;
	color: white;
	border: none;
	font-size: 17px;
	border-radius: 5px;
}
.alertBtn:focus {
	border: 2px solid white;
}
.swal2-hide-slow {
	animation: swal2-hide 0.3s forwards;
	-webkit-animation: swal2-hide 0.3s forwards;
}
code {
	display: inline-block;
	padding: 3px 5px;
	background: #F0E68C;
}
.hidden {
	display: none !important;
}
