@import "brandstyle.css";

* {
	box-sizing: border-box;
}

body {
	display: flex;
	flex-direction: column;
	min-width: 21rem;
	max-width: 120rem;
	margin: 0 auto;
}

footer {
	padding: 1rem;
	font-size: 80%;
}
footer p {
	padding: 0 1rem;
}

nav ul {
	padding-left: 4rem;
	margin: 0;
}
nav li {
	padding-bottom: 1rem;
	list-style: none;
}

img#logo {
	height: 5rem;
	margin: 2rem;
}

section.banner {
	background-color: var(--brand-sand);
}
.banner-image {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	min-height: 28rem;
}
.banner-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 2rem 0;
}
.banner-content-col {
	width: 20rem;
}

#banner-col-tagline {
	padding: 0 2em;
}
#banner-col-tagline img {
	padding: 1.5rem 0;
	border-bottom-style: solid;
	border-width: 1px;
	border-color: var(--brand-black);
}
#banner-col-tagline p {
	font-weight: bold;
}

#banner-col-cta p {
	background-color: var(--brand-white);
	opacity: 80%;
	padding: 1rem;
	margin: 1rem 1.5rem;
}

section.page-content {
	display: flex;
	flex-direction: column;
	align-items: center;
}

article {
	margin: 2rem;
	max-width: 33rem;
}
article img {
	max-width: 100%;
	max-height: 23rem;
}


@media only screen and (min-width: 700px) {

	header {
		display: flex;
		align-items: center;
	}
	header #logobox {
		flex-grow: 1;
	}
	footer {
		display: flex;
		justify-content: space-evenly;
	}
	footer p {
		min-width: 18rem;
		max-width: 40rem;
	}

	nav ul {
		padding: 0;
	}
	nav li {
		display: inline;
		padding-right: 2rem;
	}

	.banner-content {
		flex-direction: row;
		justify-content: space-evenly;
	}
	#banner-col-tagline p {
		text-align: left;
	}

	article img {
		float: right;
		margin: 0 0 1rem 1rem;
		max-width: 60%;
	}
}
