:root {
	--modifier-font-size: 0.8;
	--color-primary: 63 200 100;
	--color-bg: 255 255 255;
	--color-text-primary: 51 51 51;
	--font-family-primary: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
	--font-family-secondary: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	--border-radius-button: 50px;
	--width-page: 800px;
}
::selection {
	background: rgb(var(--color-primary) / 47%);
}
html, body {
	background: rgb(var(--color-bg));
	color: rgb(var(--color-text-primary));
	font-family: var(--font-family-primary);
	font-size: calc(6.3vw * var(--modifier-font-size));
	margin: 0;
}
.logo {
	margin-top: 1em;
}
a {
	border-bottom: dashed 1px rgb(var(--color-primary) / 47%);
	color: rgb(var(--color-primary));
	font-family: var(--font-family-secondary);
	text-decoration: none;
}
a:hover {
	color: rgb(var(--color-primary) / 80%);
}
.logo strong, .lead strong, .lead a {
	color: rgb(var(--color-primary));
}
.lead strong, .lead a {
	border-bottom: dashed 2px rgb(var(--color-primary) / 47%);
	color: rgb(var(--color-primary));
	font-family: var(--font-family-secondary);
	font-weight: 900;
	text-decoration: none;
}
p, ul {
	line-height: 1.5;
}
.lead {
	font-size: calc(2rem * var(--modifier-font-size));
	line-height: 1.3;
}
img {
	max-width: 100%;
}
a[role="button"] {
	color: white;
	text-decoration: inherit;
	font-family: var(--font-family-primary);
	font-style: inherit;
	font-weight: 800;
	background: rgb(var(--color-primary));
	padding: min(4vw, 20px);
	border-radius: var(--border-radius-button);
	text-transform: uppercase;
	font-size: calc(0.6rem * var(--modifier-font-size));
	letter-spacing: 1px;
	display: inline-block;
	border: solid 2px transparent;
}
a[role="button"]:hover {
	border: dashed 2px rgb(var(--color-text-primary));
}
header, section, footer {
	width: 90%;
	max-width: var(--width-page);
	margin: 0 auto;
}
footer {
	padding: 1rem 0;
}
section.section-wrapped {
	padding: 1rem;
	margin-top: 1rem;
	background: #ffffff0f;
	
}
@media(max-width: 700px) {
	section.section-wrapped {
		box-sizing: border-box;
	}
}
section.section-wrapped > :first-child {
	margin-top: 0;
}
.tagline {
	background-color:rgb(var(--color-primary) / 100%);
	font-size: calc(0.9rem * var(--modifier-font-size));
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.tagline + h1 {
	margin-top: 0.2rem;
}
.diminutive {
	font-size: 0.4rem;
	color: rgb(var(--color-text-primary) / 57%);
}
.gallery {
	display: grid;
	grid-template-columns: auto auto;
	grid-gap: 1em;
	padding: 1em 0;
}
.gallery > a, .gallery > div, .gallery > img {
	border: solid 3px rgb(var(--color-text-primary));
}
@media(min-width: 475px) {
	html, body { font-size: calc(6.4vw * var(--modifier-font-size)); }
}
@media(min-width: 675px) {
	.gallery {
		grid-template-columns: auto auto auto;
	}
	html, body { font-size: calc(38px * var(--modifier-font-size)); }
}