html, body {
	margin: 0;
	padding: 0;
	width: 100%;
	background-color: #eee;
	transition: background-color 1s;
}

nav {
	padding: 1em;
	background-color: #ddd9;
	box-shadow: #aaa 0 5px 15px 5px;
	overflow-x: auto;
}

nav > ul {
	display: flex;
	justify-content: space-between;
	padding: 0;
	max-width: 1200px;
	margin: auto;
}

nav li {
	display: block;
	width: calc(100%/10);
	text-align: center;
}

.content {
	max-width: 800px;
	margin: auto;
	padding: 3em 1em;
}

@media (min-width: 700px) {
	ul.musical-influences {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 700px) {
	ul.musical-influences li {
		line-height: 1.5em;
	}
}

ul.musical-influences li {
	list-style: tibetan;
	letter-spacing: 1px;
}

em:first-of-type {
	line-height: 2em;
}

.leipamies {
	width: 50%;
}

#pimeys {
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: black;
	opacity: 0;
	transition: opacity 5s;
	z-index: -1;
}

#pimeys a {
	color: red;
	position: fixed;
	top: 40%;
	width: 100%;
	text-align: center;
	font-size: 4em;
	text-decoration: none;
	transform: scale(0.9, 1.5);
	opacity: 0;
	transition: opacity 2s ease-in-out;
}

.linkit a {
	display: block;
	margin-bottom: 6px;
}

#stylefixer {
	margin: 0 1em;
}

#stylefixer.sticky {
	position: fixed;
	top: 1em;
	right: 1em;
}

@media (max-width: 1200px) {
	ul {
		display: flex;
		flex-direction: column;
	}

	ul strong::after {
		content: "▲";
		margin-left: 1em;
		font-size: 2em;
		position: absolute;
		line-height: 0.6em;
		cursor: pointer;
		transition: transform 1s;
	}

	ul.closed strong::after {
		transform: rotateZ(900deg);
	}

	ul strong {
		display: block;
		margin-bottom: 1em;
	}

	ul.closed li:not(:first-child) {
		display: none;
	}

	nav li {
		width: 100%;
		text-align: left;
	}
}

/* FIXED styles... */

/* Level 1 */
body.level1 {
	background-color: #000;
	color: #0f0;
	animation: blurTransform 1s linear;
	font-family: monospace;
	font-size: 13.37px;
}

.level1 img {
	box-shadow: 0 0 0 5px;
}

.level1 a {
	color: #0f0;
}

.level1 nav {
	background-color: #0f0;
	box-shadow: unset;
	color: #000;
}

.level1 nav a {
	color: #000;
}

.level1 button {
	background: unset;
	color: #0f0;
	border: none;
	outline: 2px solid;
	padding: 2px 6px;
}

/* Level 2 */
body.level2 {
	background-color: #fff;
	color: hotpink;
	font-family: cursive;
	font-size: 2em;
}

.img-overlay {
	display: none;
}

.level2 .img-overlay {
	display: block;
	position: absolute;
	width: 50%;
	height: 50%;
	background: hotpink;
	z-index: 2;
	opacity: 1;
	mix-blend-mode: color;
}

.level2 img {
	box-shadow: 0 0 5px 5px;
	border-radius: 25px;
}

.level2 a {
	color: hotpink;
}

.level2 nav {
	background-color: hotpink;
	box-shadow: unset;
	color: #000;
}

.level2 nav a {
	color: #000;
}

.level2 h1 {
	margin-top: -1em;
}

.level2 button {
	background: unset;
	color: hotpink;
	border: none;
	border-radius: 25px;
	outline: 5px solid;
	padding: 12px 24px 10px 20px;
	font-family: inherit;
	font-size: inherit;
	font-weight: bold;
}

@keyframes blurTransform {
	0% {filter: blur(0px)};
	10% {filter: blur(5px)};
	100% {filter: blur(0px)};
}