@font-face {
	src: url("../assets/falling-sky.otf");
	font-family: "falling-sky";
}
body {
	margin: 0;
	width: 100%;
	min-height: 100vh;
	gap: 10px;
	grid-template-rows: 55px 1fr;
	font-family: "falling-sky";
	color: #FFF;
	background: #282838;
}
header {
	width: 100%;
	height: 55px;
	padding: 0px 15px;
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
}
header div {
	gap: 15px;
	display: flex;
	justify-content: end;
	align-items: center;
}
img {
	width: 35px;
	height: 40px;
	cursor: pointer;
}
a {
	display: grid;
	place-items: center;
	font-size: 20px;
	color: #DDE;
}
h1 {
	margin: 30px;
	font-size: 30px;
}
h2 {
	margin: 30px;
	font-size: 24px;
}
p {
	margin: 0px 0px 0px 40px;
	font-size: 20px;
	color: #DDE;
}
nav {
	gap: 15px;
	display: flex;
	justify-content: space-evenly;
}
nav:last-of-type {
	margin-bottom: 100px;
}
@media screen and (max-width: 500px) {
	nav {
		flex-direction: column;
	}
}