body {
	background-color: #f2f2f2;
}
.content {
	margin-left: 8%;
	margin-right: 8%;
	border-radius: 20px;
	background-color: white;
	padding: 1px 10px;
	font-family: 'Mulish', sans-serif;
	font-size: 16px;
}
h1 {
	margin-block-start: 0.4em;
	text-align: center;
}
.center {
	text-align: center;
}
.round {
	border-radius: 50%;
}

.button {
	display: inline-block;
	background-color: white;
	color: black;
	text-decoration: none;
	font-size: 20px;
	padding: 8px 16px;
	width: 160px;
	border: 3px solid #1AA715;
	border-radius: 10px;
}
.button:hover {
	background-color: #1AA715;
	color: white !important;
}
.button:active {
	background-color: #107815;
	border-color: #107815;
}

.inputcopy {
	background-color: white;
	color: black;
	font-family: 'Mulish', sans-serif;
	font-size: 22px;
	line-height: 26px;
	text-align: center;
	padding: 8px;
	border: 3px solid #1AA715;
	border-radius: 10px;
}
input {
	width: 230px;
	height: 26px;
	outline: none;
	border-top-right-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}
.copy {
	border-left: 0px;
	border-top-left-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}
.copy:hover {
	background-color: #1AA715;
	cursor: pointer;
}
.copy:active {
	background-color: #107815;
}

footer {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 36px;
	line-height: 36px;
	background-color: #191919;
	font-family: 'Mulish', sans-serif;
	font-size: 16px;
	text-align: center;
}
.links-footer {
	color: white !important;
	text-decoration: none;
}
.links-footer:hover {
	color: #1AA715 !important;
	text-decoration-line: underline;
}

@media (prefers-color-scheme: dark) {
	body {
		background-color: #0d0d0d;
	}
	.content {
		background-color: #191919;
		color: white;
	}
	a:link {
		color: #008dff;
	}
	a:visited {
		color: #bc00ff;
	}
	a:active {
		color: #ff0000;
	}
	.button {
		background-color: #191919;
		color: white !important;
	}
	.inputcopy {
		background-color: #191919;
		color: white !important;
	}
	footer {
		background-color: #141414;
	}
}

@media only screen and (max-width: 768px) {
	.content {
		margin-left: 1%;
		margin-right: 1%;
	}
	.error-png {
		width: 300px;
		height: auto;
	}
	.button {
		width: 120px;
	}
}
@media only screen and (min-width: 1536px) {
	.content {
		margin-left: 16%;
		margin-right: 16%;
	}
}

@font-face {
	font-family: 'Mulish';
	src: url('data/Mulish.ttf') format('truetype');
}