* {
	box-sizing: border-box;
}

body {
	align-items: center;
	background-color: white;
	display: flex;
	font-family: sans-serif;
	height: 100%;
	margin: 0;
	text-align: center;
	-webkit-user-select: none;
	user-select: none;
}

button {
	background-color: rgb(0, 102, 204);
	border: none;
	border-radius: 10px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
	color: white;
	cursor: pointer;
	font-size: 14px;
	padding: 10px 30px;
	transition: filter 0.25s;
}

button:hover {
	filter: brightness(1.1);
}

button:active {
	filter: brightness(0.9);
}

footer {
	bottom: 35px;
	color: rgba(0, 0, 0, 0.5);
	font-size: 11px;
	position: fixed;
	text-align: center;
	width: 100%;
}

footer a {
	color: inherit;
	cursor: pointer;
	text-decoration: none;
}

footer a:hover {
	color: rgb(65, 145, 245);
}

html {
	height: 100%;
}

h1 {
	font-size: 28px;
	font-weight: normal;
	margin: 30px 0;
}

img {
	border-radius: 10px;
	display: block;
	height: 60px;
	margin: 0 auto;
	width: 60px;
}

main {
	width: 100%;
}

.progress-bar {
	animation-duration: 1.5s;
	animation-iteration-count: infinite;
	animation-name: progressLoop;
	animation-timing-function: linear;
	background-color: rgb(0, 102, 204);
	height: 2px;
	position: fixed;
	top: 0;
	width: 40%;
}

@keyframes progressLoop {
	0% {
		left: -40%;
	}

	100% {
		left: 100%;
	}
}

@media (prefers-color-scheme: dark) {
	:root {
		color-scheme: dark;
	}

	body {
		background-color: rgb(30, 30, 30);
		color: white;
	}

	footer {
		color: rgba(255, 255, 255, 0.5);
	}
}
