/* Media querries */
@media screen and (max-width: 875px) and (min-width: 530px) {
	h1 {
		font-size: 60px !important;
	}
	p {
		font-size: 30px !important;
	}
}
@media screen and (max-width: 529px) {
	h1 {
		font-size: 50px !important;
	}
	p {
		font-size: 25px !important;
	}
}

/* Custom Font */
@font-face {
	font-family: main;
	src: ("HelveticaNowDisplayXBlk.otf");
}

/* Background-image */
html {
	background-color: black;
	background: url("background.png") no-repeat center center fixed;
	-webkit-background-size: cover;
    -moz-background-size: cover;
 	-o-background-size: cover;
	background-size: cover;
}
body {
	margin: 0;
	font-family: main, sans-serif;
}
h1 {
	margin: 0;
	font-size: 100px;
}
p {
	font-size: 40px;
	font-weight: bold;
}
.container {
	max-width: 100vw;
	padding-top: 4px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	color: white;
}