@import url(https://fonts.googleapis.com/css?family=Montserrat);
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700);

* {
	font-family: 'Montserrat', sans-serif;
    /*color: #B8A592;*/
    color: #1B1009;
	padding: 0;
	margin: 0;
}

body {
    background-color:#B8A592;
}

h1 {
	margin: 0;
	font-size: 4em;
	word-spacing: 16px;
}

p {
	font-size: 1.4em;
	font-weight: bold;
}

.item:nth-child(2) * {
	padding: 10px 0;
}

.container {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 100%;
	background: url(bg.png);
	background-size: auto 30%;
	background-repeat: no-repeat;
	background-position: bottom right;
}

.wrapper {
	width: 60%;
	min-height: 100%;
	height: auto;
	display: block;
	margin: auto;
}

.content {
	display: block;
}

.logo {
    height: auto;
    width: auto;
    max-width: 300px;
}

.item {
	width: auto;
	height: 30vh;
	margin: 0 auto;
	text-align: center;
	padding: 10px;
}

.item:nth-child(1) {
	align-items: flex-start;
}

.item:nth-child(2) {
	align-items: center;
}

.item:nth-child(3) {
	align-items: flex-end;
}


.col-3 {
	display: flex;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	width: 60%;

}

.col-3 div {
	flex-grow: 1;
	text-align: center;

}

@media only screen and (min-width: 800px) {
	h1 {
		font-size: 6em;
	}

	p {
		font-size: 1.6em;
	}
}

@media (max-width: 799px) {
	.wrapper {
		width: 90%;
		padding: 0 10px;
		margin: auto;
	}

	.container {
		background-image: none;
	}

	.col-3 {
		flex-direction: column;
		width: 100%
	}

	.item:nth-child(3) {
		align-items: center;
		height: auto;
	}

	h1 {
		font-size: 2em;
	}

	p {
		font-size: 1.2em;
	}
}