* {
	margin: 0;
}

html {
	font-family: "Roboto", sans-serif;
	width: 100vw;
	height: 100vh;
}

#description {
	text-align: center;
}

body {
	background-color: #a6c2ca;
	background-image: url("/assets/bg.jpg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	/* hide scroll */
	overflow-x: hidden;
}

#title {
	margin-bottom: 2rem;
}

h1 {
	text-align: center;
}

li {
	list-style-type: none;
	margin-bottom: 1rem;
}

ul {
	padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-bottom: 1rem;
}

main {
	width: 50vw;
	margin: 0 auto;
	margin-top: 8vh;
	padding: 8vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: rgba(255, 255, 255, 0.8);
	border-radius: 10px;
	border: 1px solid #a6c2ca;
}

a {
	text-decoration: none;
}

a:visited {
	color: #0000fe;
}

a:hover {
	text-decoration: underline;
}

#disclaimer {
	font-size: 0.8rem;
	margin-top: 2vh;
	text-align: center;
	color: #888;
}

@media (prefers-color-scheme: dark) {
	main {
		background-color: rgba(49, 51, 56, 0.8);
	}
	html {
		/* light gray text on dark background */
		color: white;
	}
	a {
		/* normal links are unreadable */
		color: #2f81f7;
	}
	a:visited {
		color: #2f81f7;
	}

	#disclaimer {
		color: #aaa;
	}
}

@media only screen and (max-width: 1000px) {
	main {
		width: 90vw;
		max-width: fit-content;
		/* height: 100vh; */
		margin: 0 auto;
		margin-top: 20px;
		padding-top: 2vh;
	}
}
