html {
	background-color: rgb(27, 28, 38);
	color: green;
}

body {
	margin: 0;
}

input {
	margin: 4px;
	border-color: green;
	width: 50%;
	background-color: rgba(3, 190, 252, .45);
	color: white;
	height: 35px;
	box-shadow: white 0 0px 15px 3px;
}

.toggle-hide {
	transition-duration: 500ms;
	transform: translatey(-150%);
}

.toggle-hide input {
	box-shadow: none;
}

input::placeholder {
	color: white;
}

input:hover, input:focus {
	box-shadow: rgb(3, 190, 252) 0 0px 15px 3px;
}

.header {
	text-align: center;
	position: absolute;
	left: 0;
	right: 0;
	top: 20px;
}

canvas {
	background-color: rgb(27, 28, 38);
}

