.pageWrapper{
	width: 100vw;
	height: fit-content;
	color: #FFF;

	margin-top: 58px;

	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: left;

	background: url("../img/repeated_pattern.webp") repeat center center;
	background-color: #000;
}

.pageTitle {
	font-size: 40px;
	font-weight: bold;
	margin: 20px 0px;

	width:60vw;
	max-width: 600px;
	min-width: 300px;
}

.contentBox {
	margin:15px 0;
	background:#262626;
	padding:5px;
	border-radius:15px;
	width:60vw;
	max-width: 600px;
	min-width: 300px;

	height: fit-content;
	overflow: hidden;
}
.contentTrigger {
	background:inherit;
	border-radius:10px;
	padding:5px;
	cursor:pointer;
	transition: 0.1s all;
	user-select: none;
	font-size: 20px;
	font-weight: 900;
}
.contentTrigger:hover {
	background:#444;
}

.contentBox .content{
	border-top: 1px solid #444;
	padding-top:3px;
	font-size:18px;
	margin:2px 5px;
}