.content {
	margin-left: auto;
	margin-right: auto;
	max-width: 800px;
	padding-top: 50px;
}

#toggle-toc {
	position: fixed;
	left: 255px;
	top: 50px;
	background-color: #333333;
	width: 30px;
	height: 30px;
	content: test;
	border: black 5px outset;
	z-index: 1;
}

#toggle-toc:hover {
	background-color: #666666;
}

#toggle-toc:active {
	border: black 5px inset;
}

.side-container {
	position: fixed;
	left: 0;
	top: 0;
	width: 300px;
	height: 100%;
	background-color: #333333;
	border: 3px black solid;
	z-index: 2;
}

.toc-container {
	position: absolute;
	top: 25px;
	left: 0;
	margin-top: 42px;
	background-color: #333333;
	height: 100%;
	overflow-y: scroll;
}

.table-of-contents {
	list-style-type: none;
	padding: 0;
	
	margin: 10px;
	margin-top: 30px;
	margin-bottom: 30px;
	user-select: none;
}

.table-of-contents a {
	display: block;
	width: 100%;
	border: 5px black outset;
	color: white;
	text-decoration: none;
	padding: 1px;
}

.table-of-contents a:active {
	border: 5px black inset;
}

.table-of-contents li {
	color: white;
	font-size: 20px;
	padding: 1px;
	margin-top: 5px;
}

.table-of-contents > li {
	border-top: 2px black solid;
}

.table-of-contents ol {
	list-style-type: none;
	padding-left: 0px;
}

.table-of-contents ol > li {
	color: white;
	margin-top: 5px;
}

.table-of-contents ol > li:hover {
	background-color: #666666;
}

table {
	border-collapse: collapse;
}

table td {
	border-right: 1px #990000 solid;
	border-bottom: 1px #990000 solid;
	padding: 10px;
	color: #CCC;
}

.title {
	font-size: 35px;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	width: 85%;
	max-width: 800px;
	padding-top: 20px;
	text-shadow: -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000, 2px 2px 0 #000;
}

h1 {
	text-align: left;
	color: #990000;
	border-top: 3px black solid;
	margin-top: 10px;
}

h2 {
	display: inline-block;
	color: white;
	margin-bottom: -5px;
	margin-top: 30px;
	margin-left: 20px;
	scroll-margin-top: 2em;
	background-color: #333333;
	border: 2px black solid;
	border-radius: 10px;
	padding: 5px;
	font-size: 20px;
	width: fit-content;
	z-index: 1;
	transform: skew(0, -1deg);
}

.block {
	display: flex;
	flex-direction: column;
}

.answer {
	display: inline-block;
	background-color: black;
	border: 2px #690000 solid;
	border-radius: 5px;
	margin-left: 40px;
	width: fit-content;
}
	
p {
	display: inline-block;
	color: #CCC;
	margin: 0;
	padding: 5px;
	font-size: 20px;
}

ul {
	margin-top: 5px;
	margin-left: 30px;
}

.block li {
	color: #CCC;
}

.faq a {
	color: #990000;
	text-decoration: underline;
}

.header_content {
	max-width: 700px;
}

@media (max-width:800px) {
	#toggle-toc {
		top: 230px;
	}
	
	.side-container {
		top: 165px;
	}
	
	.faq {
		padding-left: 10px;
		padding-right: 10px;
		margin-top: 100px;
	}
	
	h2 {
		scroll-margin-top: 12em;
	}
}