body {
	font-family: "Sono", monospace;
}
canvas {
	margin: auto;
	margin-bottom: 2rem;
	display: block;
}
a {
	font-style: italic;
	text-decoration: none;
}
button {
	background: none;
	padding: 8px 12px;
	border: 2px solid;
	cursor: pointer;
}

.color-control {
	display: flex;
	align-items: center;
	margin: 1rem 0;
}

button:active {
	background-color: #dbdbdb;
}

fieldset > * {
	display: block;
}

input[type="text"] {
	margin: 1rem auto;
	font-size: 2rem;
	width: 50%;
	text-align: center;
	font-style: italic;
	display: block;
	border: none;
}

.buttons {
	display: flex;
	align-items: center;
	width: 50%;
	justify-content: space-evenly;
	margin: auto;
}
@media (max-width: 600px) {
	.buttons {
		width: 100%;
		flex-direction: column;
	}
	.buttons button {
		margin: 1rem 0;
	}

	input[type="text"] {
		width: 100%;
		margin: 2rem 0;
		font-size: 1.5rem;
	}
}
