@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed');

body {
	font-family: 'Roboto Condensed', sans-serif;
	margin: 0;
	background: #ddd;
	height: auto;
}

h1 {
	font-weight: 400;
	font-size: 2.5rem;
	text-transform: uppercase;
	margin: 0;
}

h2 {
	font-weight: 400;
	font-size: 1.2rem;
	text-transform: capitalize;
	margin: 0;
	color: #fff;
}

img {
	display: block;
	width: 100%;
}

main {
	max-width: 900px;
	margin: auto;
	box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034),
		0 6.7px 5.3px rgba(0, 0, 0, 0.048), 0 12.5px 10px rgba(0, 0, 0, 0.06),
		0 22.3px 17.9px rgba(0, 0, 0, 0.072),
		0 41.8px 33.4px rgba(0, 0, 0, 0.086), 0 100px 80px rgba(0, 0, 0, 0.12);
}

#landing {
	background: #fff;
}

#landing-text {
	display: flex;
	flex: 0 1 40vw;
	height: 50vh;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding-right: 1rem;
	padding-left: 1rem;
}

#landing-text h2 {
	color: #2f2f2f;
}

#landing-image {
	background: url('../img/0.jpg');
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	height: 50vh;
	flex: 0 1 60vw;
	margin: 0;
}

.btn {
	padding: 0.5rem 2rem;
	border: 1px #ccc solid;
	display: inline-block;
	margin: 2rem 0 0;
	border-radius: 50px;
	text-decoration: none;
	color: #333;
	transition: background 500ms ease;
}

.btn:hover {
	background: #f4f4f4;
}

#header {
	padding: 1.5rem;
	text-align: center;
	background: #333;
	color: #020202;
}

#header h2 {
	border-left: dotted 1px #fff;
	border-right: dotted 1px #fff;
	display: inline-block;
	padding-right: 1rem;
	padding-left: 1rem;
}

.caption {
	padding: 0.8rem;
	text-align: center;
	color: #020202;
}

footer {
	text-align: center;
	padding: 2rem 1rem;
	margin: auto;
	color: #040404;
}

footer h3 {
	font-size: 3rem;
	margin-bottom: 0;
}

/* Screen Sizes 500px and Up */
@media (min-width: 500px) {
	#landing {
		display: flex;
		height: 100%;
	}

	#landing-text {
		height: 100vh;
	}

	#landing-image {
		height: 100vh;
	}
}

/* Screen Sizes 700px and Up */
@media (min-width: 700px) {
	.btn {
		padding: 1rem 3rem;
	}
}
