* {
	margin: 0;
	padding: 0;
}
html,
body {
	background-color: rgb(200, 255, 200);
	height: 100vh;
	overflow: hidden;
	width: 100vw;
}
#persist {
	background-color: white;
	border-bottom: 5px solid rgb(50, 150, 200);
	height: 30px;
	left: 0;
	position: fixed;
	top: 0;
	width: 100vw;
	z-index: 100;
}
#persist h1 {
	display: inline;
	float: left;
	font-size: 15px;
	font-style: italic;
	letter-spacing: 2px;
	line-height: 15px;
	height: 15px;
	left: 0;
	margin-left: 20px;
	margin-top: 5px;
	text-align: left;
	text-shadow: 2px 2px 1px rgb(255, 100, 100);
	width: auto;
}
#persist ul {
	display: inline;
	float: right;
	height: 20px;
	list-style: none;
	margin-right: 20px;
	margin-top: 5px;
}
#persist ul li {
	color: rgb(255, 100, 100);
	cursor: pointer;
	float: right;
	font-family: "PT Serif";
	font-size: 15px;
	font-style: italic;
	font-weight: 700;
	height: 15px;
	letter-spacing: 2px;
	line-height: 15px;
	text-transform: uppercase;
	margin: 0 5px;
	height: 20px;
}
div#background {
	bottom: 0;
	height: 0;
	left: 0;
	position: absolute;
	width: 100vw;
}
div#circle {
	background-color: white;
	border-radius: 50vh;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 20;
}
h1,
h2 {
	color: rgb(50, 150, 200);
	font-family: "PT Serif";
	font-weight: 700;
	text-align: left;
	width: 100%;
}
h2 {
	letter-spacing: 2px;
	text-transform: uppercase;
}
h1#year {
	font-size: 120px;
	height: 100vh;
	left: 0;
	line-height: 100vh;
	pointer-events: none;
	position: absolute;
	text-align: center;
	top: 0;
	z-index: 30;
}
div#canvas {
	background-color: rgb(255, 100, 100);
	height: 100vh;
	left: 0;
	position: absolute;
	top: 0;
	width: 100vw;
}
#title h1 {
	font-size: 30px;
	font-style: italic;
	letter-spacing: 6px;
	left: 0;
	line-height: 30px;
	margin-bottom: 30px;
	text-align: center;
	text-shadow: 2px 2px 1px white;
	width: 100%;
}
#title h1:first-child {
	margin-top: 120px;
}
#title h2 {
	color: white;
	cursor: pointer;
	text-align: center;
}
div.wrapper {
	box-sizing: border-box;
	margin: 40px auto;
	max-width: 600px;
	padding: 20px;
	width: 100%;
}
div.wrapper div {
	display: none;
}
div.wrapper div.is-active {
	display: block;
}
div.wrapper p {
	color: white;
	font-family: "PT Serif";
	font-size: 20px;
	font-weight: 700;
	line-height: 30px;
	margin-bottom: 30px;
}
div.wrapper p .name {
	color: rgb(255, 100, 100);
	font-weight: 700;
}
div.wrapper p a {
	color: rgb(50, 150, 200);
	font-weight: 700;
}
#about {
	background-color: rgba(255, 255, 255, 0.7);
	height: 100vh;
	left: 0;
	position: absolute;
	top: -100vh;
	transition: all 200ms;
	width: 100vw;
	z-index: 200;
}
#about div.wrapper p {
	color: rgb(50, 150, 200);
	font-weight: 400;
}
#about.is-active {
	top: 0;
}
#guts.is-blurred {
	filter: blur(10px);
}
#canvas {
	transition: top 200ms;
}
#canvas.is-inactive {
	top: 100vh;
}
.here {
	cursor: pointer;
}
.mobile {
	display: none;
}
@media only screen and (max-width: 600px) {
	.mobile {
		display: block;
	}
}
