html,
body {
	overflow: hidden;
	padding: 0;
	margin: 0;
	background: url(main_bg.png) no-repeat center center fixed; 
	  -webkit-background-size: cover;
	  -moz-background-size: cover;
	  -o-background-size: cover;
	  background-size: cover;
}

canvas {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.content {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
}

img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	height: 115%;
	width: auto;
	opacity: 0;
}

@media (min-aspect-ratio: 4/3) {
	img {
		/* height: 100vh;
		width: 100%; */
	}
}

@media (max-aspect-ratio: 3/5) {
	img {
		height: 100vw;
    	width: auto;
	}
}

.overlay {
	position: fixed;
	top: 50%;
	left: 30%;
	max-width: 50%;
	transform: translate(-50%, -50%);
	font-family: "Sofia Sans Extra Condensed", sans-serif;
	font-size: 10vh;
	font-weight: 1000;
	pointer-events: none;
	text-transform: uppercase;
}

.overlay p {
	font-family: "Sofia Sans Extra Condensed", sans-serif;
	font-size: 2.5vh;
	font-weight: 400;
	pointer-events: none;
	text-transform: uppercase;
	margin: 0;
	padding: 0;
	text-align: right;
	color: #bb070e;
}

@media (max-aspect-ratio: 1/1) {
	.overlay {
		left: 50%;
		width: 90%;
		max-width: 90%;
	}
	.overlay p{
		text-align: left;
	}
}

@media (max-aspect-ratio: 3/5) {
	.overlay {
		font-size: 5vh;
	}
}