/*GENERAL*/

@font-face {
	font-family: "Phonk";
	src: url("/fonts/phonk-regular.woff") format("woff"), 
		 url("/fonts/phonk-regular.woff2") format("woff2");
}

@font-face {
	font-family: "URWDIN";
	src: url("/fonts/URWDIN-Regular.woff") format("woff"),
		 url(/fonts/URWDIN-Regular.woff2) format("woff2");
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-size: 18px;
	color: #fff;
	font-family: "URWDIN";
}

body {
	background: #505F41;
}

h1 {
	font-family: "Phonk";
	font-size: 4rem;
	line-height: 4.8rem;
	font-weight: 900;
}

h2 {
	color: #FF9900;
	font-size: 2rem;
	font-weight: 200;
	padding: 1rem 0 1rem 0;
}

h3 {
	font-size: 1.5rem;
	font-weight: 200;
}


.flex {
	display: flex;
}

.col {
	flex-direction: column;
}

.home {
	max-width: 1140px;
	margin: 0 auto;
}

.left {
	width:40%;
	padding: 10em 0 0 3em;
	z-index: 1;
}

.right {
	width: 60%;
	overflow: hidden;
	height: 100vh;
}

.image {
	width: auto;
}

.image img {
	height: inherit;
}

@media (max-width: 720px) {
	.left {
		width: 85%;
		padding-top: 6em;
	}
	.right {
		width: 15%;
	}
	h1 {
		font-size: 2.8rem;
		line-height: 3.3rem;
	}
}