body {
	font-family: Helvetica, Arial, sans-serif;
	margin: 0;
	color: rgb(33,32,27);
	font-size: 20px;
	background: rgb(180,110,194);
}

section {
	min-height: 100vh;
	display: flex;
	flex-direction: row;
}

#head {
	background: rgb(151, 201, 222);
}

#head .profile {
	background-image: url("profile.webp");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center bottom;
	height: 100vh;
	width: 50vw;
}

a {
	padding: 0.7em 1.5em;
	margin: 1rem 0;
	display: inline-block;
	text-decoration: none;
	font-weight: bold;
	font-size: 20px;
}

#head a {
	background: rgb(180,110,194);
	color: white;
}

#head .inset {
	padding: 20vh 0;
	max-width: 50vw;

}

h1 {
	font-size: 50px;
	margin: 0.2rem 0;
}

h2 {
	font-size: 36px;
	margin: 0.2rem 0;
	color: rgb(33,32,27);
}

#services { background: white; }
#services div {
	width: 40vw;
	min-width: 300px;
	margin: 10vh auto;
}

#services h3{
	color: rgb(180,110,194);
}

#services h2 {
	color: rgb(180,110,194);
}


h3 {
	text-transform: uppercase;
	font-size: 22px;
		margin: 3rem 0 1rem;
}
p {
	margin: 0.2rem 0;
	line-height: 1.5;
	font-weight: 300;
}

#why {
	color: white;
}
#why .inset{
	background: rgb(33,32,27);
	margin: 5vw;
	display: flex;
	flex-direction: row;
	align-items: stretch;
	justify-content: space-evenly;
}

#why .inset div {
	width: 40%;
	padding: 2rem 0;
}

#why h2 {
	color: white;
	text-align: center;
	margin: 30vh auto 0;
}

#contact {
	min-height: 50vh;
	text-align: center;
}

#contact div {
	width: 40vw;
	min-width: 300px;
	margin: 10vh auto;
}

#contact h2 {
	color: white;
}

#contact a {
	background: white;
	color: rgb(33,32,27);
}

@media (max-width: 1100px) {

	body {
		font-size: 20px;
	}

	h3 { font-size: 22px; }

	section {
		flex-direction: column-reverse;
		justify-content: space-evenly;
	}

	#head .inset {
		max-width: 100%;
		padding: 2rem;
		text-align: center;
	}

	#head .profile {
		height: 80vh;
		width: 100%;
	}

	#services div {
		width: 90vw;
	}

	#why .inset {
		flex-direction: column;
		padding: 2rem 0;
	}

	#why .inset h2 {
		margin: 0 auto;
		text-align: left;
	}
	#why .inset div {
		width: 80vw;
		margin: 0 auto;
		padding: 0;
	}
/*
	#why h3 {
		margin: 3rem 0 1rem;
	}*/
}