html {
	background-color: black;
	color: white !important;
	padding: 25px 150px;
}

p { max-width: 960px; }

.range-wrap {
	position: relative;
	width: 500px;
	margin: 1.5rem 0;
}

.tick-labels {
	position: relative;
	width: 500px;
}

.death.tick-labels span {
	padding: 0;
	position: absolute;
	left: calc(10px + 480px / (116 - 88) * (var(--val) - 88));
	transform: translateX(-50%);
}

.golem.tick-labels span {
	padding: 0;
	position: absolute;
	left: calc(10px + 480px / (323 - 296) * (var(--val) - 296));
	transform: translateX(-50%);
}

input[type="range"] {
	width: 500px;
}

.toggle {
	display: none;
}

.toggleable {
	display: none;
}

.toggle-button {
	display: inline-block;
	margin-top: 12px;
	padding: 5px 11px;
	border: 1px solid white;
	border-radius: 10px;
}

.toggle:checked ~ .toggleable {
	display: initial;
}

.toggle:checked ~ * .toggle-button {
	background-color: #333;
}
