:root {
	--primary: #114D72;
	--primary-focused: #115D82;
	--secondary: #ff5252;
	--background: #eee;
	--highlight: #ffda79;
	/* Theme color */
	--theme: var(--primary);
}
*, *::before, *::after {
	box-sizing: border-box;
}

h1 {
    margin: 0.5rem 0 1rem;
    font-size: 2.5rem;
	font-weight: normal;
	font-family: 'Staatliches', sans-serif;
}

h2 {
    margin: 0;
    font-size: 1.75rem;
}

.tab input {
	position: absolute;
	opacity: 0;
	z-index: -1;
}
.tab_content {
	max-height: 0;
	overflow: auto;
	transition: all 0.15s;
	background-color: white;
}
.tab_content a {
    color: royalblue;
    text-decoration: underline;
	cursor: pointer;
}
.tab input:checked ~ .tab_content {
	max-height: 10000px;
	padding: 1rem;
}

/* Visual styles */
.accordion {
	border: 2px solid var(--theme);
	border-radius: 0.5rem;
	overflow: hidden;
}
.tab_label {
	display: flex;
	color: white;
	background: var(--theme);
	cursor: pointer;
	user-select: none;
}
.tab input:checked + label.tab_label {
    background-color: var(--primary-focused);
}
.tab_label {
	justify-content: space-between;
	padding: 1rem;
}
.tab_label::after {
	content: "\276F";
	width: 1em;
	height: 1em;
	text-align: center;
	transform: rotate(90deg);
	transition: all 0.15s;
}
.tab input:checked + .tab_label::after {
	transform: rotate(270deg);
}
.tab_content p {
	margin: 10;
}
.indented-header {
    margin: 1.5rem 0 1rem;
}
.indented-text {
}
.help-image {
	display: block;
	max-width: 100%;
	height: auto;
}
iframe {
    width: calc(100% - 4em);
}