body {
	overflow-x: hidden;
	font-family: Arial, sans-serif;
}
.bodyContent {
	width: 100vW;
	overflow-x: hidden;
}
.header h1 {
	font-family: arial;
	color: #ffffff;
	font-size: 40px;
	margin-top: 3vH;
	margin-left: 3vW;
	width: 90vW;
	z-index: 1;
	text-decoration: underline;
}
.header hr {
	left: 0;
	width: 100%;
	color: #ffffff;
	position: absolute;
}
.content {
	margin-top: 9vH;
	margin-left: 3vW;
	color: #ffffff;
	width: 92.5vW;
	line-height: 30px;
}
.content ul {
	color: #ffffff;
	font-size: 16px;
	font-family: arial;
	margin-left: -20px;
}
.content li {
	background-color: #42424242;
	margin-bottom: 7px;
	margin-right: 6px;
	padding: 2px;
	border-radius: 10px;
	padding-left: 13px;
	border: 1px solid #fff;
}
.content h2 {
	color: #ffffff;
	font-size: 24px;
	font-family: arial;
	text-decoration: underline;
	margin-left: 10px;
}
.content a {
	text-decoration: none;
	color: #ffffff;
	background-color: #2121ff;
	border-radius: 5px;
	padding: 3px;
}
.content a:hover {
	background-color: #ffffff;
	color: #000000;
}
h2 {
	cursor: pointer;
	position: relative;
}
h2::after {
	content: "▼";
	position: absolute;
	left: -20px;
	font-size: 0.8em;
	transform: rotate(-90deg);
	transition: transform 0.2s ease;
}
h2.active::after {
	transform: rotate(0deg);
}
.collapsible-section {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}
.collapsible-section.open {
	max-height: 99999px;
}