/* RESET */

* {
	margin: 0;
	padding: 0;
	border: 0;
	list-style: none;
	vertical-align: baseline;
}

/* WEBFONTS */

@font-face {
    font-family: 'font';
    src: url('../fonts/font.otf') format('opentype');
}

/* GLOBAL */

body {
	font-family: 'font', Helvetica;
    -webkit-font-smoothing: antialiased;
  	-moz-osx-font-smoothing: grayscale;
	background-color: #000;
}

.container {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100vw;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

p {
	color: #fff;
	font-size: 2vw;
	margin-bottom: 0px;
	text-align: center;
}