:root {
	--DavysGray: #545454;
	--LapisLazuli: #51658e;
	--Viridian: #518E72;
	--Sunset: #F2C68A;
	--Lion: #C7A371;
	--Tan: #DCB47E;
	--MagentaHaze: #8E5173;
	--Linen: #F9EBE0;
}
/* cormorant-garamond-300 - latin */
@font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 300;
	src: url('fonts/cormorant-garamond-v19-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* cormorant-garamond-regular - latin */
@font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 400;
	src: url('fonts/cormorant-garamond-v19-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* cormorant-garamond-italic - latin */
@font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Cormorant Garamond';
	font-style: italic;
	font-weight: 400;
	src: url('fonts/cormorant-garamond-v19-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* lato-regular - latin */
@font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Lato';
	font-style: normal;
	font-weight: 400;
	src: url('fonts/lato-v24-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* lato-italic - latin */
@font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Lato';
	font-style: italic;
	font-weight: 400;
	src: url('fonts/lato-v24-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}  

* { box-sizing: border-box; }
body {
	background-color: var(--LapisLazuli);
	color: var(--Linen);
	font-family: "Cormorant Garamond", serif;
	font-size: 16px;
}
header,
main,
footer {
	max-width: 864px;
	margin: 1rem auto;
}
main,
.ten { margin-bottom: 3rem; }
h1 {
	font-size: 59px;
	font-weight: 300;
	margin-bottom: 30px;
	margin-top: 110px;
}
h2 {
	font-size: 29px;
	font-weight: 400;
	margin-bottom: 0;
	margin-top: 33px;
}
h3 {
	font-size: 29px;
	font-style: italic;
	font-weight: 400;
	margin-bottom: 16px;
	margin-top: 16px;
}
section {
	align-items: flex-start;
	color: var(--DavysGray);
	display: flex;
	font-family: 'Lato', sans-serif;
	font-size: 17.6px;
	gap: 20px;
}
section + section { margin-top: 16px; }
.three,
.seven,
.nine { margin: 2rem auto 2.1rem; }
footer { font-size: 19.2px; }
img {
	height: auto;
	max-width: 100%;
}

.hr {
	color: var(--Sunset);
	font-family: 'Lato', sans-serif;
	text-align: center;
}

.verse {
	background-color: #FFFFFF;
	border-left: 5px solid;
	padding: 0.5em 1.5em 0.5em 1.5em;
}
.illustration { width: 29%; }
.one .verse,
.four .verse,
.eight .verse {
	border-color: var(--Tan);
	width: 71.028%;
}
.two .verse,
.five .verse,
.ten .verse {
	border-color: var(--MagentaHaze);
	width: 71.028%;
}
.three .verse,
.nine .verse {
	border-color: var(--Viridian);
	width: 100%;
}
.six .verse {
	border-color: var(--Viridian);
	width: 71.028%;
}
.seven .verse {
	border-color: var(--MagentaHaze);
	width: 100%;
}

.one .verse p:first-child::first-letter,
.four .verse p:first-child::first-letter,
.eight .verse p:first-child::first-letter { color: var(--Tan); }
.two .verse p:first-child::first-letter,
.five .verse p:first-child::first-letter,
.seven .verse p:first-child::first-letter,
.ten .verse p:first-child::first-letter { color: var(--MagentaHaze); }
.three .verse p:first-child::first-letter,
.six .verse p:first-child::first-letter,
.nine .verse p:first-child::first-letter { color: var(--Viridian); }

.copyright {
	font-size: 1rem;
	font-weight: 300;
	margin-top: 3.5rem;
	margin-bottom: 4.2rem;
}
.textcenter { text-align: center; }

@media (max-width: 767px) {
	section { flex-direction: column; }
	.illustration {
		width: auto;
		margin-left: auto;
		margin-right: auto;
		max-width: 80%;
	}
	.verse { width: 100% !important; }
}