* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	scrollbar-width: none;
	font-family: sans-serif;
}

*::selection {
	background: #5fd2fc;
}

body {
	background: linear-gradient(320deg, #f9f9f9);
	/*background-attachment: fixed;*/
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	padding-bottom: 100px;
}

header {
	position: sticky;
	top: 0;
	background: #fff;
	color: #093b86;
	display: flex;
	align-items: center;
	justify-content: space-between;
	box-shadow: 0 0 10px rgba(0, 0, 0, .4);
	padding: 7px;
	z-index: 999;
}

a {
	color: #093b86;
	text-decoration: none;
	font-family: fantasy;
	font-size: 18px;
}

i {
	font-size: 40px;
	cursor: pointer;
}

h1 {
	font-size: 44px;
}

main {
	display: block;
	margin: 30px auto;
	padding: 25px;
	width: 40%;
}

h2 {
	text-align: center;
}

h4 {
	opacity: 60%;
}

.box {
	margin-top: 20px;
	display: flex;
	flex-direction: column;
	gap: 40px;
}

@media (prefers-color-scheme: dark) {
	body {
		background: #333;
		color: white;
	}
	h1, h2 {
		color: white;
	}
	header {
		background: #333;
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
		color: white;
	}
	ul, li {
		color: #ddd;
	}
}


@media screen and (max-width: 600px) {
	header {
		padding: 10px;
	}
	i {
		cursor: default;
	}
	main {
		width: 100%;
	}
}