@font-face {
	font-family: "Sky Night";
	src: url(Skynight.otf) format(opentype);
}

html {
	background: repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(255, 215, 109, 0.4) 50px, rgba(255, 215, 109, 0.4) 100px),
				repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(255, 215, 109, 0.4) 50px, rgba(255, 215, 109, 0.4) 100px);
	background-color: rgb(247 247 247);
	scrollbar-color: rgb(255 215 109) aliceblue;
	height: 100%;
}

body, label, button, select, option {
	font-family: "Sky Night", sans-serif;
	overflow-wrap: anywhere;
}

header {
	margin-bottom: 30px;
}

.topbar {
	display: block;
	margin: auto;
	max-width: 100%;
}

p {
	font-size: 1.2em;
}

.header-title {
	text-align: center;
	font-size: 1.7em;
}

button {
	width: 125px;
	height: 40px;
	font-size: large;
	background-color: rgba(240, 240, 240, 0.75);
	border: none;
	border-radius: 8px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.25), 0 6px 20px 0 rgba(0, 0, 0, 0.25);
	-webkit-appearance: none;
}

select {
	width: 200px;
	height: 40px;
	font-size: large;
	background-color: rgba(240, 240, 240, 0.75);
	border: none;
	border-radius: 8px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.25), 0 6px 20px 0 rgba(0, 0, 0, 0.25);
}

label {
	font-size: large;
	margin-top: auto;
	margin-bottom: auto;
}

button:hover, select:hover {
	background-color: rgb(255 250 185);
	cursor: pointer;
}

.centered-buttons {
	display: flex;
	justify-content: center;
	gap: 20px;
}

.text-module {
	margin: auto;
	background-color: rgba(240, 240, 240, 0.75);
	max-width: 800px;
	min-height: 100px;
	padding-left: 30px;
	padding-right: 30px;
	padding-top: 10px;
	padding-bottom: 15px;
	margin-bottom: 20px;
	border-radius: 15px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.25), 0 6px 20px 0 rgba(0, 0, 0, 0.25);
}

footer {
	width: 100%;
	text-align: center;
	font-size: 0.9em;
	padding-bottom: 15px;
}