@charset "utf-8";

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body { width:100%; height:100vh; background:url(images/bg-white.png) repeat fixed; }
body p,h1,h2,h3,h4,h5,h6,ul,li,ol { font-family:'EB Garamond', serif; font-weight:lighter; letter-spacing:2px; }

img {
	max-width: 100%;
}

section {
	width: 90%;
	max-width: 960px;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-content: center;
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	-webkit-transform: translateY(-50%);
			transform: translateY(-50%);
}
section img {
	margin-right: 50px;
}
section .content {
	height: 200px;
}

a:link { text-decoration:none; color:inherit; transition:all .4s ease; }
a:hover { text-decoration:none; color:inherit; transition:all .4s ease; }
a:active { text-decoration:none; color:inherit; }
a:visited { text-decoration:none; color:inherit; }

p  { font-size:21px; }
h1 { font-size:60px; }
h2 { font-size:48px; }
h3 { font-size:36px; }
h4 { font-size:24px; }
h5 { font-size:21px; }
h6 { font-size:16px; }

.white { color:#fff; }
.blue { color:#638a8b; }
.red { color:#c83a2d; }
.brown { color:#382d26; }