@font-face {
	font-family: Archivo;
	font-weight: normal;
	src: url("/resources/Archivo-Regular.ttf");
}

@font-face {
	font-family: Archivo;
	font-weight: bold;
	src: url("/resources/Archivo-SemiBold.ttf");
}

html {
	background-color: #000;
	color: #fff;
	font-family: 'Archivo';
	font-weight: normal;
	max-width: 1000px;
	margin: auto;
}

body {
	text-align: center;
}

h1 {
	margin-top: 100px;
	font-size: 56px;
	font-weight: bold;
}

img {
	margin-top: 35px;
	width: 800px;
}

cite {
	display: block;
	font-size: 11px;
	color: #888;
}

footer {
	margin-top: 80px;
	margin-bottom: 100px;
	font-size: 11px;
	color: #888;
}

/* Goated: https://stackoverflow.com/questions/37088198/copyleft-symbol */
#copyleft {
	display: inline-block;
	transform: rotate(180deg);
}

@media only screen and (max-width: 799px) {
	html {
		background-color: #000;
		font-size: 16px;
	}
	
	body {
		text-align: center;
	}
	
	h1 {
		margin-top: 30px;
		font-size: 48px;
	}
	
	img {
		margin-top: 20px;
		width: 100%;
	}
	
	cite {
		font-size: 12px;
	}
	
	footer {
		margin-top: 30px;
		margin-bottom: 50px;
		font-size: 12px;
	}
}
