@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Display:wght@100;200;300;400;500&family=Press+Start+2P&display=swap");
:root {
	--navbg: #11052de2;
}
*,
body {
	margin: 0;
	padding: 0;
	scroll-behavior: smooth;
	font-family: "Noto Sans Display", sans-serif;
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box; /* Firefox, other Gecko */
	box-sizing: border-box;
	image-rendering: -moz-crisp-edges;
	image-rendering: -webkit-crisp-edges;
	image-rendering: pixelated;
	image-rendering: crisp-edges;
	/* width: 100vw; */
}
.pixel {
	font-family: "Press Start 2P", sans-serif;
	color: rgb(109, 109, 109);
}
section {
	/* height: 100vh; */
	width: 100%;
	display: block;
	background-color: white;
	position: relative;
	padding: 2em;
}
p {
	font-family: "Noto Sans Display", sans-serif;
	font-size: 1.3em;
	font-weight: 400;
	color: rgb(69, 69, 69);
}
.section-title {
	color: rgb(109, 109, 109);
	font-size: 2em;
	margin: 1em 0em 2em;
	font-family: "Press Start 2P", sans-serif;
}
nav {
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box; /* Firefox, other Gecko */
	box-sizing: border-box;
	z-index: 1000;
	background-color: var(--navbg);
	color: white;
	position: fixed;
	overflow: hidden;
	top: 0;
	width: 100%;
	height: 10%;
	max-height: 80px;
	min-height: 65px;
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	font-family: "Press Start 2P", sans-serif;
}
nav ul {
	position: absolute;
	right: 0px;
	top: 0px;
	display: flex;
	flex-flow: row wrap;
	padding: 1em;
}
nav ul li {
	margin: 0.2em;
	list-style-type: none;
	padding: 0.2em;
}
nav ul li::after {
	height: 1em;
	width: 0.1em;
	background-color: white;
	display: inline-block;
}
nav a {
	text-decoration: none;
	color: aliceblue;
	font-family: "Press Start 2P", sans-serif;
}

@media screen and (max-width: 640px) {
	section {
		padding: 1em;
	}
}
@media screen and (max-width: 340px) {
	.section-title {
		font-size: x-large;
	}
}
