::-webkit-scrollbar {
	display: none;
}
* {
	scrollbar-width: none;
}
html {
	font-size: 12pt;
	height: 100%;
	margin: 0;
}
header {
	background-color: #bdd4e7;
	font-size: 1.5rem;
	color: white;
	padding: 10px;
}
h1 {
	font-family: "Permanent Marker", Arial, Helvetica, sans-serif;
	margin-left: 35px;
}
h4 {
	font-family: "Permanent Marker", Arial, Helvetica, sans-serif;
}
body {
	width: 80vw;
	border: 1px solid;
	margin: auto;
	scrollbar-width: none;
}
nav ul {
	list-style-type: none;
	background-color: #8693ab;
	padding: 0px;
	margin: 0px;
	overflow: hidden;
}
nav a {
	color: white;
	font-family: "Permanent Marker", Arial, Helvetica, sans-serif;
	text-decoration: none;
	padding: 20px;
	display: block;
}
nav li {
	float: left;
}
nav a:hover {
	background-color: #808ca1;
}
nav a.active {
	text-decoration: underline;
	color: rgb(237, 237, 71);
}
main {
	display: flex;
	flex-direction: column;
}
.section {
	font-family: Helvetica, Arial;
	padding-top: 10px;
}
img {
	max-width: 50%;
	max-height: 50%;
	margin-left: auto;
	margin-right: auto;
	display: block;
}
.text1, .text2, .text3, .text4 {
	margin-bottom: 20px;
}
footer {
	margin-top: 25px;
	padding: 15px;
	background-color: #212227;
	left: 50%;
	transform: translateX(-50%);
	position: relative;
	bottom: 0;
	color: white;
	font-family: Arial, Helvetica, sans-serif;
}
footer a {
	color: white;
}
p, h4 {
	margin-left: 20px;
	margin-right: 20px;
}
p {
	font-family: Helvetica, Arial, sans-serif;
}
table {
	margin-top: 3rem !important;
	border-collapse: collapse;
	width: 100%;
	margin: 0 auto;
	width: 75%;
}
th, td {
	border: 1.5px solid black;
	padding: 10px;
}
.tableheader {
	font-family: "Permanent Marker";
	background-color: #8693ab;
	color: white;
	font-size: 1.3rem;
}
tr:nth-child(even) {
	background-color: rgb(208, 224, 230);
}
@media (max-width: 768px) {
	body {
		width: 100%;
		margin: 0 auto;
		border: none;
	}
	.content {
		line-height: 1.5;
	}
	img {
		max-width: 100%;
		height: auto;
		margin-left: 0;
	}
	table {
		font-size: 0.8rem;
		margin: 0 auto;
	}
}
.wrapper {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}
.content {
	flex: 1;
}
.container {
	display: grid;
	grid-template-rows: auto 1fr auto;
	min-height: 75vh;
}