@import url(https://fonts.googleapis.com/css?family=VT323);
;
* {
	box-sizing: border-box;
}

:root {
	--backgroundColor: black;
	--colorShadeA: rgb(106, 163, 137);
	--colorShadeB: rgb(121, 186, 156);
	--colorShadeC: rgb(150, 232, 195);
	--colorShadeD: rgb(187, 232, 211);
	--colorShadeE: rgb(205, 255, 232);
}

#title {
	color: rgb(41, 255, 00);
}

body {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	background-color: black;
	font-family: 'VT323', monospace;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

input[type="file"] {
	display: none;
}

#canvas-container {
	border: 10px;
	position: relative;
}

#canvas-container::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 15%;
	background: repeating-linear-gradient( 0deg, grey, white, transparent 4px, black, transparent 3px);
}

*::before, *::after {
	box-sizing: border-box;
}

.button {
	margin: 15px;
	padding: 10px;
	position: relative;
	display: inline-block;
	cursor: pointer;
	outline: none;
	border: 0;
	vertical-align: middle;
	text-decoration: none;
	font-size: 1.5rem;
	color: var(black);
	background-color: grey;
	font-weight: 700;
	text-transform: uppercase;
	font-family: inherit;
	box-shadow: 0 9px #999;
}

.button:hover {
	transform: translateY(-2px);
}

.button:active {
	box-shadow: 0 5px #666;
	transform: translateY(4px);
}