:root {
	--var-color-primary: #f6a032;
}

@font-face {
	font-family: 'Akkopro';
	font-weight: 100;
	src: url('font/akkopro-thin-webfont.woff') format('woff');
}

@font-face {
	font-family: 'Akkopro';
	font-weight: normal;
	src: url('font/akkopro-light-webfont.woff') format('woff');
}

@font-face {
	font-family: 'Akkopro';
	font-weight: bold;
	src: url('font/akkopro-webfont.woff') format('woff');
}

* {
	box-sizing: border-box;
}

body {
	display: flex;
	flex-direction: column;
	justify-content: end;

	font-family: 'Akkopro', sans-serif;
	font-size: 18pt;
	color: white;

	background-color: #0d0c11;
	background-image: url('img/background.jpg');
	background-size: cover;
	background-position: bottom center;
	background-attachment: fixed;
	background-repeat: no-repeat;

	height: 100svh;
	margin: 0;
}

.content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;

	height: 80svh;
	padding: 20px;
	margin: 0px auto;
	max-width: 600px;

	text-align: center;
}

.logo {
	margin-bottom: 50px;
}

.bottom {
	margin-top: 20px;
}

p {
	margin: 5px 0;
}

img {
	max-width: 100%;
	height: auto;
}

.highlight {
	color: var(--var-color-primary);
}

@media (max-height: 600px) {
	body {
		font-size: 14pt;
	}

	.content {
		height: 90svh;
	}
}

@media (max-width: 560px) {
	body {
		font-size: 16pt;
	}

	.logo {
		margin-bottom: 100px;
	}
}