html, body {
	font-family: 'Courier', 'Courier New';
	min-width: 650px;
	margin: 0;
	padding: 0;

	color: white;
	text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.background {
	background: black url('background-large.jpg') no-repeat center center fixed;
	background-size: cover;
}
.title {
	position: fixed;
	top: 0px;
	left: 25px;

	font-size: 75px;

	margin: 0;
	padding-right: 200px;
}
.location {
	position: fixed;
	left: 5px;
	bottom: 5px;

	font-size: 12px;
	opacity: .75;
}
.copyright {
	position: fixed;
	right: 5px;
	bottom: 5px;

	font-size: 12px;
	opacity: .75;
}

@media only screen and (max-width: 768px) {
	.background {
		background-image: url('background-small.jpg');
	}
	.title {
		font-size: 50px;
	}
	.location {
		font-size: 10px;
	}
	.copyright {
		font-size: 10px;
	}
}

@media only screen and (max-width: 480px) {
	.rights {
		display: none;
	}
}
