/* ********** FONTS ********** */

@font-face {
    font-family: NeutraDisplay-Bold;
    src: url("/assets/fonts/NeutraDisplay-Bold.otf") format("opentype");
	font-weight: bold;
}

/* ********** RESET ********** */

html, body, div, h1, h2, h3, p {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

/* ********** MAIN ********** */

::-moz-selection {
	background-color: #A59983;
   	color: #CC673F;
}
::selection {
   	background-color: #A59983;
   	color: #CC673F;
}

body {
	width: 100%;
	height: 100%;
	font-family: 'NeutraDisplay-Bold', sans-serif;
	font-size: 16px;
	background-color: #fff;
}

#main {
	width: 100%;
	height: 100vh;
	max-width: 1920px;
	max-height: 1080px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: auto 40% auto;
	grid-template-rows: 15% auto 30%;
	-webkit-box-shadow: 0 5px 10px #777;
	-moz-box-shadow: 0 5px 10px #777;
	box-shadow: 0 5px 10px #777; 
}

#header {
	width: 100%;
	height: 100%;
	grid-row: 1;
	grid-column: 1/4;
}

#content {
	grid-row: 2;
	grid-column: 1/4;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
}

#footer {
	grid-row: 3;
	grid-column: 1/4;
}

h1 {
	font-size: 4em;
	padding: 0 0 65px 35%;
	text-transform: lowercase;
	flex-basis: 100%;
}

p {
	padding: 0 0 20px 50px;
	font-size: 1.5em;
}

a {
	text-decoration: none;
	color: #000;
}
a:hover {
	text-decoration: underline;
	color: #CC673F;
}

/* ********** CONTENT ********** */

.logo {
	width: 20%;
	max-width: 400px;
	min-width: 200px;
	height: auto;
	padding: 50px;
	display: block;
}

.orange {
	color: #CC673F;
}
.beige {
	color: #A59983;
}

.mobile {
	display: none;
}
.desktop {
	display: inline-block;
}

/* ********** RESPONSIVE ********** */

@media all and (max-width: 1200px) {
	body {
		font-size: 12px;
	}
}

@media all and (max-width: 900px) {
	body {
		font-size: 10px;
	}
	h1 {
		padding: 0 0 50px 50px;
	}
}

@media all and (max-width: 600px) {
	h1 {
		padding: 0 0 15px 25px;
	}
	p {
		padding: 0 0 10px 25px;
	}
	.logo {
		padding: 25px;
	}
	.mobile {
		display: inline-block;
	}
	.desktop {
		display: none;
	}
}

