#contentContainer {
	position: relative;
	width: 100%;
	background-color: var(--background);
	z-index: 3;
	padding: 25px 0 25px 0;
	border-top: solid 1px var(--highlight);
	overflow: hidden; /* hides long hr dividers */
}

#content {
	position: relative;
	max-width: 800px;
	margin: 0 auto 0 auto;
}

hr {
	width: 200vw;
	height: 0;
	border: none;
	border-bottom: dashed var(--highlight) 1px;
	margin: 25px 0 0 0;
	transform: translateX(-50%);
}

p {
	display: inline-block;
	width: 100%;
	margin: 25px 0 0 0;
	line-height: 24px;
	color: var(--text);
}

h1,
h2,
h3 {
	margin: 25px 0 0 0;
	font-weight: 700;
	font-size: var(--bigText);
}

h2 {
	font-size: var(--largeText);
}

h3 {
	font-size: var(--standardText);
}

a {
	text-decoration: none;
	color: var(--text);
	font-weight: 700;
	transition: color 0.25s;
}

a:hover {
	color: var(--highlight);
}

img,
video,
audio {
	width: 100%;
	border-radius: var(--radius);
	margin: 5px 0 0 0;
}

img:first-child,
video:first-child,
audio:first-child,
p:first-child,
h1:first-child,
h2:first-child,
h3:first-child {
	margin-top: 0;
}

.customVideo {
	position: relative;
	padding-top: 56.25%;
	margin-top: 25px;
	border-radius: var(--radius);
	overflow: hidden;
}

blockquote {
	margin: 25px 0 0 0;
	padding-left: 25px;
	font-size: var(--smallText);
	border-left: dashed var(--highlight) 1px;
}

table {
	margin: 25px 0 0 0;
	font-size: var(--smallText);
	width: 100%;
}

thead {
	font-size: var(--standardText);
	text-align: left;
}

.smallImage {
	display: inline-block;
	height: 600px;
	width: calc(50% - 5px);
	margin-right: calc(5px * 2);
	border-radius: var(--radius);
	background-size: cover;
	background-position: center;
	text-decoration: none;
}

.smallImage:nth-child(2n) {
	margin-right: 0;
}

#error {
	margin-top: 50px;
	height: calc(100vh - 100px + 1px)); /* don't know why that single pixel is necessary */
}