html {
	height: 100%;
}

body {
	background: pink;
	background-image: 
		linear-gradient(lime, transparent),
		linear-gradient(-45deg, magenta, transparent),
		linear-gradient(45deg, cyan, transparent);
	background-attachment: fixed;
	margin: 0;
	padding: 0;
	color: white;
	text-align: center;
	font-size: 18px;
	line-height: 1.6;
	min-height: 100%;
}

a {
	color: white;
}

header {
	display: flex;
	font-family: sans-serif;
	line-height: 2;
}

header a {
	text-decoration: none;
}
h1 {
	flex: 1;
	margin: 0;
	background-color: black;
}
nav {
	flex: 2;
}

h1, nav {
	font-size: 1rem;
}

nav ul {
	display: flex;
	margin: 0;
	padding: 0;
}
nav ul li {
	display: flex;
	flex: 1;
	background: red;
}

nav ul li:nth-child(odd) {
	background: blue;
}

nav ul li:hover {
	background: black;
}

nav ul li a {
	flex: 1;
}

.filters {
	font-size: 14px;
	background: white;
	color: black;
	padding: 0;
}
.filters p {
	margin: 0;
	padding: 0.5em;
}

h1.year {
	background: transparent;
	margin: 1rem 0 0;
	font-size: 3rem;
	color: yellow;
	text-shadow: 0 1px 6px black;
	letter-spacing: 3px;
	transform: rotate(5deg);
}

main {
	padding: 2em 1em;
	display: flex;
}

.students {
	flex: 1;
	list-style: none;
	margin: 0 0 2em;
	padding: 0;
	font-size: 2rem;
	color: cyan;
	font-style: italic;
}

@media (max-width: 600px) {
	.students {
		font-size: 1rem;
		line-height: 2;
	}
}

.students a {
	font-style: normal;
	color: black;
}

.students a:hover {
	color:  white;
}

.li-header {
	font-style: normal;
	font-weight: bold;
	color: white;
	text-shadow: 0 1px 3px black;
	letter-spacing: 2px;
}

.students li:before {
	font-style: normal;
	margin-right: 0.24em;
}

.students li.fromscratch:before {
	content: "🦄";
}

.students li.fromscratchplus:before {
	content: "🦄🔵";
}

.students li.tumblr:before {
	content: "🔵";
}

.students li.cargo:before {
	content: "⚫️";
}

.students li.squarespace:before {
	content: "◻️";
}

.students li.friends:before {
	content: "👯";
}

.students li.wordpress:before {
	content: "🤖";
}

.khioflame {
	vertical-align: middle;
}