@font-face {
	font-family: 'More Sugar';
	src: url('More_Sugar.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Open Sauce';
	src: url('Open_Sauce.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

* {
	transition: background 250ms, color 250ms;
}

html {
	scroll-behavior: smooth;
}

body {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-family: 'Open Sauce', sans-serif;
	margin: 0;
	padding: 1.5rem;
	background-color: #f2fff3;
	color: #002202;
}

div#header {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	background-color: #a5d6a7;
	padding: 20px;
	text-align: center;
	border-radius: 8px;
	box-shadow: 0 0 50px #00000020;
}

div#header span#subtitle {
	font-size: 32px;
}

div#header img {
	height: 64px;
	margin-right: 32px;
	border-radius: 5px;
}

h1 {
	text-align: center;
	font-family: 'More Sugar', sans-serif;
	font-size: 2rem;
	margin-top: 20px;
	color: #1b5e20;
}

ul {
	list-style-type: none;
	padding: 0;
	margin: 20px auto;
	max-width: 1024px;
	background: #ffffff;
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

li {
	padding: 10px 0;
	border-bottom: 1px solid #c8e6c9;
}

li a {
	width: 100%;
	height: 100%;
	padding: 10px 0;
	text-decoration: none;
	color: #67a76b;
}

li:hover a {
	color: #004d00;
}

li:active a,
li:focus a {
	color: #002e00;
}

li:last-child {
	border-bottom: none;
}

li:hover {
	background-color: #a5d6a7;
	border-radius: 0;
	cursor: pointer;
}

li:active,
li:focus {
	background-color: #68a06a;
	border-radius: 0;
	cursor: pointer;
}

li:first-child {
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
}

li:last-child {
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
}