@charset "UTF-8";

* {
	margin: 0;
	padding: 0;
}

.clearfix::after {
	content: "";
	display: block;
	clear: both;
}

img {
	width: 100%;
	height: 100%;
	vertical-align: bottom;
	object-fit: cover;
}

#wrap {
	width: 100%;
	max-width: 980px;
	margin: 20px auto 0;
	font-family: 'Mountains of Christmas', cursive, 'M PLUS 1p', sans-serif;
}

/* header */
header {
	width: 100%;
	height: 300px;
	overflow: hidden;
	position: relative;
}
h1 {
	margin-top: -35px;
	margin-left: -110px;
	line-height: 1;
	position: absolute;
	top: 50%;
	left: 50%;
	font-size: 70px;
	color: white;
}
header > p {
	width: 100%;
	max-width: 980px;
}

/* section */
section {
	margin: 30px 0;
}
section > div {
	width: 90%;
	padding: 10px 5%;
	float: left;
}
section > div > h2 {
	text-align: center;
}
section > div > p:first-of-type {
	height: 200px;
	overflow: hidden;
}
@media screen and (min-width: 640px) {
	section > div {
		width: 32.6%;
		max-width: 320px;
		padding: 0;
	}
	section > div:not(:last-of-type) {
		margin-right: 1.1%;
	}
	section > div > p:first-of-type {
		height: 200px;
	}
}


/* nav */
nav {
	padding: 20px 0 0;
	border-bottom: solid 1px gray;
}
ul {
	list-style: none;
}
li {
	width: 33%;
	max-width: 150px;
	text-align: center;
	float: left;
}
a {
	display: block;
	height: 40px;
	padding: 35px 0 0;
	border: solid 1px gray;
	border-bottom: none;
	border-radius: 75px 75px 0 0;
	text-decoration: none;
	color: gray;
}
a:hover {
	background: palegoldenrod;
	color: olive;
}
/* footer */
footer {
	padding: 10px 0;
	font-size: 10px;
	text-align: center;
}