/* Fonts

.dm-serif display-regular {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-style: normal;
}

.dm-serif display-regular-italic {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-style: italic;
}

.dm-sans-<uniquifier> {
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

*/

/* Reset */

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,  q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
select::-ms-expand {
    display: none;
}

/* Basics */

html {
	scroll-behavior: smooth;
}

body {
	font-family: "DM Sans", sans-serif; 
	font-size: 16px;
	font-weight: 400;
	line-height: 1.65;
	color: #333;
	-webkit-font-smoothing: antialiased; /* Fix for webkit rendering */
	-webkit-text-size-adjust: 100%;
	overflow-y: scroll;
	background: #fff;
}

h1, h2, h3 {
	font-family: "DM Serif Display", serif;
	font-weight: 400;
	margin-bottom: 1.25rem;
	color: #7F6548;
}

h1, h2 {
	font-size: 2rem;
	line-height: 1.25;
}

p {
	font-family: "DM Sans", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	margin-bottom: 1.25rem;
}
p.statement {
	font-family: "DM Serif Display", serif;
	font-size: 1.5rem;
	line-height: 1.4;
	margin-bottom: 1.25rem;
	color: #7F6548;
}

em {
	font-style: italic;
}
hr {
	clear: both;
	padding-top: 1.15rem;
	margin: 0 auto 2rem;
	height: 0;
	width: 20%;
	border: solid #7f6548;
	border-width: 0 0 1px;
}
strong {
	font-weight: 700;
}

a.button {
	font-family: "DM Serif Display", serif;
	font-size: 1.2em;
	background: #7f6548;
	border: none;
	color: #fff;
	display: inline-block;
	text-decoration: none;
	cursor: pointer;
	margin: 0 0 1.25rem;
	padding: 0.7rem 1.5rem 0.75rem;
	transition: background 0.2s ease-out, color 0.2s ease-out, border 0.2s ease-out;
	-webkit-appearance: none;
	box-sizing: border-box;
	border-radius: 5px;
}
a.button:hover {
	background: #000;
}
a.noStyle {
	text-decoration: none;
	color: inherit;
}

/* Layout */

.header {
	padding: 3em 2em 2em;
	display: flex;
	align-items: center;
	justify-content: center;
}
.logo {
	width: 80%;
	max-width: 600px;
	margin: 0;
}
.image {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	aspect-ratio: 2.4 / 1;
	background-image: url(../images/sam.jpg);
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: 50% 50%;
}
.text {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding: 2em;
	box-sizing: border-box;
	text-align: center;
}
img.motif {
	width: 20%;
	max-width: 150px;
}
img.motif.spaced {
	margin-top: 2rem
}

@media only screen and (max-width: 880px) {
	body {
		font-size: 15px;
	}
	.header {
		padding: 2.5rem 2em 2rem;
	}
	h1, h2 {
		font-size: 1.6rem;
		line-height: 1.3;
	}
	.image {
		aspect-ratio: 1.7 / 1;
		background-size: 175%;
		background-position: 30% 40%;
	}
	img.motif {
		width: 40%;
		max-width: 200px;
	}
}