body {
	background-color: black;
	margin: 0;
	color: white;
	font-family: 'Titillium Web';
	height: 100vh;
}
div.counters {
	font-size: 1.5em;
	padding: .7em;
}
div.canv {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 60%;
	margin: 0 3%;
}
div.buttons {
	padding-top: 20px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(8em, 10em));
	justify-content: center;
}
button {
	margin: 0 2px;
	font-family: 'Titillium Web';
	font-size: 1.3em;
	border: 2px black solid;
	border-radius: 5px;
	cursor: pointer;
}
button:hover {
	background-color: gray;
}
.stop {
	background-color: red;
}
.shuffle {
	background-color: yellow;
}
.parameters {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px 0;
	font-size: 1.4em;
	flex-wrap: wrap;
}
.parameters input[type=number], select {
	height: 30px;
	width: 80px;
	font-size: 1em;
	font-family: 'Titillium Web';
	border: 2px black solid;
	border-radius: 5px;
}
select {
	width: 170px;
	height: 1.6em;
}
.parameters button {
	font-size: 1em;
}
.parameters ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: grid;
	width: 100%;
	grid-template-columns: repeat(auto-fit, minmax(15em, 20em));
	justify-content: center;
}
.parameters ul li {
	display: block;
	text-align: center;
	margin: .01em .6em;
}
.parameters ul div.apply {
	width: 100%;
}
footer {
	text-align: center;
	font-size: 1.2em;
	margin: 1em 0;
}
footer p {
	margin: 5px 0;
}
a {
	color: white;
	text-decoration: none;
	font-weight: 800;
}
a:hover {
	color: #e403ff;
}
p.info {
	margin: 0;
	text-align: center;
	font-style: italic;
}
::selection {
	background-color: #ccc;
}
p.author {
	font-size: 1.2em;
}
p.mainpage {
	text-decoration: underline;
}
h1 {
	font-family: 'Pacifico';
	font-weight: 400;
	text-align: center;
	font-size: 4em;
	margin: 0.1em auto;
}