@font-face {
    font-family: 'Futura';
    src: url('./font/futura.ttf');
}

*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: Futura, Arial, Helvetica, sans-serif;
	font-weight: 400;
}

#page {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100vh;
	overflow: hidden;
	background: url('./cover.jpg') no-repeat center center / cover;
	z-index: 1;
}
#page::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0, .7);
	z-index: -1;
}

.offline {
	padding: 0 20px;
}

.logo {
	width: 100%;
}


h1 {
	font-family: Futura, Arial, Helvetica, sans-serif;
	font-weight: 600;
	letter-spacing: .9px;
	color: #fff;
	text-align: center;
	font-size: 22px;
	margin-top: 30px;
}
