* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html, body {
	width: 100%;
	height: 100%;
}

a {
	color: #a049a0;
    text-decoration: none;
}

a:hover, a:active {
	text-shadow: 1px 1px 2px #f3c9e8, 1px -1px 2px #f3c9e8, 1px 0px 2px #a049a0;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    min-height: 50px;
    width: 100%;
    padding: 0.8em 20% 1em 20%;
    background: linear-gradient(25turn, #fff, #ffeff8 80%);
    border-radius: 0 0 80% 20%;
	border-bottom: 2px solid #865b86;
    font-weight: bold;
	font-family: Verdana, Tahoma, sans-serif;
	z-index: 2;
}

nav > a {
	padding: 0 0.5em 0.5em 0;
}

.landing {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	justify-content: space-evenly;
	padding: 50px 0;
	text-align: center;
	font-size: 2em;
	font-weight: bold;
	fill: #fff;
}

.landing h1 {
	padding: 20px 0;
}

.landing h2 {
	font-size: 1.2em;
	padding: 0 0 20px 0;
}

.landing img {
	border-radius: 15%/50%;
	max-width: 100%;
	width: 150px;
}

.landing, section > header {
	background: #e6c4e6 url(./images/clouds-lake-sunrise.jpg) no-repeat;
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
	color: #fff;
	font-family: Verdana, Tahoma, sans-serif;
	text-shadow: 2px 2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000, -2px -2px 0 #000, 2px 0px 0 #000, 0px 2px 0 #000, -2px 0px 0 #000, 0px -2px 0 #000;
}

.happiness-arch {
    padding: 0 0 1.5em 0;
    text-align: center;
    fill: #05e089;
    text-shadow: 0px 1px #000, 1px 1px #000;
}

section {
	position: relative;
	padding: 0 0 100px 0;
	background: #fff;
	font-size: 1.2em;
	font-family: Cambria, Georgia, Times, 'Times New Roman', serif;
	line-height: 1.5em;
	scroll-margin-top: 50px;
}

section:nth-of-type(2n+2) {
	background: #ffeff8;
}

section > header {
	position: relative;
	padding: 30px 20%;
	margin: 0 0 40px 0;
	border-radius: 0 0 80% 20%;
	border-bottom: 2px solid #865b86;
	font-size: 1.6em;
	letter-spacing: 1pt;
}

section > header:before {
	content: "";
	position: absolute;
	top: -5px;
	left: 0;
	display: block;
	width: 100%;
	height: 5px;
	background: linear-gradient(transparent, #865b86);
}

section:first-of-type > header {
	background-image: none;
}

section article {
	max-width: 60%;
	margin: 0 auto;
}

section p {
	text-indent: 1em;
	padding: 0 0 10px 0;
}

.contact {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	margin: 0 0 10px 0;
	padding: 5px 0;
	border-bottom: 2px solid;
	word-break: break-all;
	word-break: break-word;
}

.contact > * {
	flex: 50% 1 1;
}

.contact span {
	font-weight: bold;
	flex: 10%;
}

.address {
	padding: 2em 0;
}

.address > * {
	flex: auto 1 1;
}

.address > div {
	padding: 0 1em 1em 0;
}

.conditions {
	padding: 30px 20px;
}

.conditions div {
	padding: 5px 0;
}

.conditions ul {
	padding: 5px 0;
	columns: 200px auto;
	border-top: 2px solid;
}

.conditions li {
	padding: 5px 20px 5px 0;
}

@media screen and (max-width: 600px) {
	nav {
		padding: 0.5em 20% 1em 20px;
	}
	section article {
		max-width: 100%;
		padding: 0 5%;
	}
} 