body, html {
	margin: 0;
	padding: 0;
	background: rgb(167,167,167);
	background: radial-gradient(circle, rgba(201,201,201,1) 0%, rgba(167,167,167,1) 55%, rgba(123,123,123,1) 100%);
	overflow: hidden;
	color: rgb(65, 65, 65);
	font-family: roboto, sans-serif;
	font-weight: 300;
	font-size: 18px;
	letter-spacing: 1px;
	height: 100%;
}

main {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 90%;
}

h1 {
	font-weight: normal;
	font-style: italic;
	margin-bottom: 0.5em;
	animation-name: titleani;
	animation-duration: 3s; 
	animation-timing-function: ease-out; 
	animation-delay: 0s;
	animation-direction: alternate;
	animation-iteration-count: infinite;
	animation-play-state: running; 
}

@keyframes titleani {
	0% {
		opacity: 0.2;
	}
	25% {
		opacity: 0.8;
	}
	75% {
		opacity: 0.5;
	}
	100% {
		opacity: 1;
	}
}

a {
	color: rgb(73, 73, 73);
}

.name {
	white-space: nowrap;
}

#landing {
	max-width: 42em;
}

#landing, #landing a {
	color: rgb(73, 73, 73);
}

#landing a.start {
	margin-top: 2em;
	display: block;
	font-style: italic;
	font-size: 1.5em;
}

#landing p {
	margin: 2em 0;
	line-height: 1.5em;
}

#landing .credits, .note {
	margin: 0.5em 0;
	font-size: 0.8em;
}

#controls {
	position: absolute;
	bottom: 3em;
	width: 100%;
	display: flex;
	align-items: baseline;
	justify-content: space-between;
}

#tags {
	margin-right: 5em;
}

#tags span {
	margin-right: 1em;
}

#tags span:last-child {
	margin-right: 0;
}

#title-links {
	/* display: flex; */
	align-items: baseline;
	margin-left: 5em;
}

#title-links h1 {
	font-size: 1.25em;
}

#title-links .context-links {
	margin-top: 0.5em;
}

#title-links .context-links a {
	font-size: 0.75em;
}

#resift {
	padding-right: 1.5em;
}

#about-text {
	background: #fff;
	position: absolute;
	padding: 1em;
	overflow-y: scroll;
	width: 45em;
	height: 75%;
	z-index: 100;
}

@media only screen and (max-width: 1149px) {
	body, html {
		font-size: 16px;
	}
}

@media only screen and (max-width: 950px) {
	#landing {
		max-width: 30em;
	}

	#controls {
		flex-direction: column-reverse;
	}

	#tags, #title-links {
		margin-left: 3em;
	}
	#tags {
		margin-bottom: 1.5em;
	}
}