@import url("https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
	--text-color: rgb(255, 255, 255);
	--background-color: rgb(0, 95, 127);
	--background-color-light: rgb(0, 190, 255);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	max-width: 100%;
	list-style: none;
	color: inherit;
	text-decoration: none;
	font-size: 1rem;
	font-weight: normal;
	font-family: "Kanit", sans-serif;
}

body {
	width: 100dvw;
	background-color: var(--background-color-light);
	color: var(--text-color);
}

header h1 {
	background-color: var(--background-color);
	box-shadow: 0 0.5rem 0.5rem black;
	font-size: 8rem;
	font-weight: 1000;
	text-align: center;
}

main {
	padding: 2rem;
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

main section {
	background-color: var(--background-color);
	border-radius: 2rem;
	padding: 2rem;
	box-shadow: 0 0.5rem 0.5rem black;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

main section h2 {
	font-size: 3rem;
	font-weight: 600;
	text-align: center;
}

main section ul {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}

main section ul li {
	width: 100%;
}

main section ul li a {
	display: block;
	width: 100%;
	text-align: center;
	border-radius: 1.5rem;
	font-size: 1.5rem;
}

main section ul li a:hover {
	background-color: white;
	color: var(--background-color);
}