@font-face {
	font-family: titillium-regular;
	src: url(../font/TitilliumWeb-Regular.ttf);
}

@font-face {
	font-family: titillium-medium;
	src: url(../font/TitilliumWeb-SemiBold.ttf);
}

@font-face {
	font-family: titillium-bold;
	src: url(../font/TitilliumWeb-Bold.ttf);
}

@font-face {
	font-family: font-awesome;
	src: url(../font/fontawesome/webfonts/fa-solid-900.ttf);
}

* {
	box-sizing: border-box;
	outline: none;
}

:root {
	--c-red: rgb(225, 6, 0);
	--c-black: rgb(21, 21, 30);
	--c-white: rgb(255, 255, 255);
	--c-grey: rgb(247, 244, 241);
	--c-hover: rgba(255, 6, 0, 0.1);
}

body {
	display: grid;
	grid-template-rows: 1fr 56px;
	grid-template-columns: 1fr;
	grid-template-areas:
		"content"
		"navigation";
	margin: 0;
	padding: 0;
	width: 100vw;
	min-width: 320px;
	height: 100dvh;
	min-height: 100dvh;
	overflow: hidden;
	font-family: titillium-regular;
	font-size: 16px;
	font-weight: normal;
	color: var(--c-black);
	background: var(--c-grey);
}

a {
	color: inherit;
	text-decoration: none;
}

#content {
	grid-area: content;
	display: flex;
	flex-flow: column nowrap;
	margin: 0;
	padding: 4px;
	overflow: auto;
}

.app-logo {
	margin: 32px auto;
	width: 64px;
	border-radius: 50%;
}

#navigation {
	grid-area: navigation;
	margin: 0;
	padding: 0;
	background: var(--c-black);
}

#navigation ul {
	list-style-type: none;
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-around;
	align-items: center;
	margin: 0;
	padding: 0;
}

#navigation ul li {
	margin: 0;
	padding: 0;
}

#navigation ul li a {
	color: var(--c-white);
	text-decoration: none;
}

#navigation ul li a.navigation-selected {
	color: var(--c-red);
}

#navigation ul li a i {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 8px;
	padding: 8px;
	width: 40px;
	height: 40px;
}

.banner {
	display: flex;
	flex-flow: column nowrap;
	justify-content: center;
	align-items: center;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
}

.banner i {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 16px;
	padding: 0;
	width: 32px;
	height: 32px;
}

.banner figcaption {
	font-family: titillium-medium;
}