* {
	color: white;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Bricolage Grotesque', sans-serif;
	background-color: #2d6e2f;
	background-image: url("images/background-pattern.svg");
	background-repeat: repeat-y;
	background-size: auto;
	margin: 0;
	padding: 0;
}

/* NAVIGATE HEADER */

.topnavbackground {
	position: fixed;
	top:0;

	background-color: #184f1a;
	width: 100%;
	height: 50px;
}

.topnavcontainer {
	position: fixed;
	top: 0;
	font-size: 25px;
	height: 50px; 
	width: 100%; 
}

#topnavlinks {
	margin: 0px 30px 0px 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100%;
}

#topnavlinks .right {
	display: flex;
	gap: 25px;
}

.nav {
	text-decoration: none;
	color: white;
	font-weight: bold;
}

.highlighted {
	color: lightgreen;
}

/* LOGO BANNER */

.bannercontainer {
	display: flex;
	justify-content: center;
	margin-top: 50px;
}

.bannerimage {
	display: flex;
	width: 600vh;
}

/* ARTICLE */

.content {
	outline: 2px solid black;
	display:flex;
	flex-direction: column;
	min-height: 100vh;
}

.articlecontainer {
	display: flex;
	justify-content: center;
	align-items: space-between;	
	margin: 0px 10px 30px 10px;
}

#maincontainer {
	width: 1000px;
	color: white;
	outline: 2px solid #184f1a;
	padding: 4px;
	border-radius: 8px;
}

#maincontainer .headercontainer {
	padding: 20px;
	background-color: #184f1a; 
	border-radius: 8px;
}

#maincontainer .textcontainer {
	padding: 20px 40px;
	margin-top: 5px;
	background-color: #236325;
	border-radius: 8px;
}


/*FOOTER*/

.footer {
	display:flex;
	padding: 10px;
	justify-content: center;
	margin-top: auto;
}

/* CUSTOM TEXT CLASSES*/

.headertext {
	font-size: 60px;
	font-weight: bold;
	margin: 0;
}

.subtext {
	font-size: 15px;
	margin: 0;
}

.title {
	font-size: 45px;
	font-weight: bold;
}

.subtitle {
	font-size: 30px;
	margin-top: 25px;
}

p {
	font-size: 19px;
	margin-bottom: 20px;
}

ul {
	list-style-position: outside;
	padding-left: 1.5em;
}

ul li {
	list-style-type: square;
	list-style-position: outside;
	font-size: 19px;
	margin-bottom: 14px;
}

ul ul li {
	list-style-type: circle;
}
