@font-face {
	font-family: "Roboto";
	src: url("/fonts/Roboto/Roboto-Regular.ttf");
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	background-image: url("/img/background.php");
	background-size: cover;
	background-position: center bottom;
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
}

body {
	width: 100vw;
	height: 100vh;

	background-color: rgba(0, 0, 0, 0.75);

	color: whitesmoke;
	font-family: 'Roboto', 'Courier New', Courier, monospace;
}

div.content {
	position: absolute;

	top: 50%;
	left: 50%;

	transform: translate(-50%, -50%);

	text-align: center;
}

h1 {
	font-size: 50px;

	text-wrap: nowrap;
}

h1, p {
	margin: 5px;
}

.copyright {
	position: relative;

	top: 99%;
	left: 50%;

	transform: translate(-50%, -100%);
	text-align: center;

	font-size: 13px;
}
