:root {
	--color-primary: #004994;
	--color-secondary: #AFCA0B;
	--black: 			#000000;
	--white:			#ffffff;

	/* Spacing */
	--component-gap: 2rem;
	--component-gap--small: 2rem;
	--component-gap--medium: 4rem;
	--component-gap--large: 6rem;
	--gap: 1rem;

	--xwide-max-width: 1920px;
	--wide-max-width: 1440px;
	--default-max-width: 1280px;
	--narrow-max-width: 856px;
	--default-padding: 1rem;

	--l:   400 1.25rem/1.5 "NotoSans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Segoe UI, Roboto, Oxygen, sans-serif;
	--m:   400 1.125rem/1.5 "NotoSans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Segoe UI, Roboto, Oxygen, sans-serif;
	--s:   400 0.875rem/1.5 "NotoSans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Segoe UI, Roboto, Oxygen, sans-serif;

	--l-semibold:   600 1.25rem/1.5 "NotoSans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Segoe UI, Roboto, Oxygen, sans-serif;
	--m-semibold:   600 1.125rem/1.5 "NotoSans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Segoe UI, Roboto, Oxygen, sans-serif;
	--s-semibold:   600 0.875rem/1.5 "NotoSans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Segoe UI, Roboto, Oxygen, sans-serif;

	--l-bold:   700 1.25rem/1.5 "NotoSans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Segoe UI, Roboto, Oxygen, sans-serif;
	--m-bold:   700 1.125rem/1.5 "NotoSans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Segoe UI, Roboto, Oxygen, sans-serif;
	--s-bold:   700 0.875rem/1.5 "NotoSans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Segoe UI, Roboto, Oxygen, sans-serif;
}

@media(min-width: 800px) {
	:root {
		--default-padding: 2rem;

/*
		--l:   400 1.75rem/1.5 "NotoSans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Segoe UI, Roboto, Oxygen, sans-serif;
		--m:   400 1.25rem/1.5 "NotoSans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Segoe UI, Roboto, Oxygen, sans-serif;
		--s:   400 0.875rem/1.5 "NotoSans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Segoe UI, Roboto, Oxygen, sans-serif;

		--l-semibold:   600 1.75rem/1.5 "NotoSans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Segoe UI, Roboto, Oxygen, sans-serif;
		--m-semibold:   600 1.25rem/1.5 "NotoSans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Segoe UI, Roboto, Oxygen, sans-serif;
		--s-semibold:   600 0.875rem/1.5 "NotoSans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Segoe UI, Roboto, Oxygen, sans-serif;

		--l-bold:   700 1.5rem/1.5 "NotoSans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Segoe UI, Roboto, Oxygen, sans-serif;
		--m-bold:   700 1.25rem/1.5 "NotoSans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Segoe UI, Roboto, Oxygen, sans-serif;
		--s-bold:   700 0.875rem/1.5 "NotoSans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Segoe UI, Roboto, Oxygen, sans-serif;
 */

	}
}

@media(min-width: 1280px) {
	:root {
		--default-padding: 0;
	}
}

/* ----------------------------------------------------------------------------------- */

html {
	font: var(--m-semibold);
	color: var(--color-primary);
	height: 100%;
	overflow-x: hidden;
}

body {
	position: relative;
	line-height: 1.6;
	overflow-x: hidden;
}

strong {
	font-weight: 600;
}

/* ----------------------------------------------------------------------------------- */

.section-xwide {
	margin: auto;
	padding-right: var(--default-padding);
	padding-left: var(--default-padding);
	max-width: var(--xwide-max-width);
}

.section-wide {
	margin: auto;
	padding-right: var(--default-padding);
	padding-left: var(--default-padding);
	max-width: var(--wide-max-width);
}

.section-default {
	margin: auto;
	padding-right: var(--default-padding);
	padding-left: var(--default-padding);
	max-width: var(--default-max-width);
}

.section-narrow {
	margin: auto;
	padding-right: var(--default-padding);
	padding-left: var(--default-padding);
	max-width: var(--narrow-max-width);
}

/* ----------------------------------------------------------------------------------- */

a {
	color: var(--color-primary);
	text-decoration: none;
	text-underline-offset: 0.25em;
}

a:hover {
	color: var(--link-hover);
	text-decoration: underline;
}

a:focus {
	text-decoration: none;
	outline: 2px solid var(--color-primary);
}


h1 {
	margin: 1rem 0;
	font-family: 'Sun';
	font-size: 3rem;
	line-height: 1.2;
	letter-spacing: 0.05em;
	text-align: center;
}

@media(min-width: 40em) {
	h1 {
		font-size: 4.5rem;
	}
}

h2 {
	margin: 1rem 0;
	font-family: 'Sun';
	font-size: 3rem;
	line-height: 1.2;
	letter-spacing: 0.05em;
}

@media(min-width: 40em) {
	h2 {
		font-size: 3.5rem;
	}
}

.button {
	padding: 0.5rem 1rem;
	appearance: none;
	display: inline-block;
	color: #fcdf39;
	font-weight: bold;
	border: 2px solid transparent;
	outline: 0;
	border-radius: 0.25rem;
	background-color: #943133;
}

.button:hover {
	border: 2px solid #260326;
}

.button:focus {
	outline: 2px solid #260326;
	outline-offset: 2px;
}


label {
	display: block;
	font: var(--s);
}

input {
	padding: 0.5rem;
	width: 100%;
	display: inline-block;
	color: var(--color-primary);
	border: 2px solid #57201f;
	background-color: #f4ecc0;
}

input:focus,
input:focus-visible {
	outline: 0;
	border: 2px solid #57201f;
}

.form-row {
	margin-bottom: 1rem;
}

form {
	margin-top: 3rem;
}


/* ----------------------------------------------------------------------------------- */

header {
	padding: 2rem 0;
	background-color: white;
}

header img {
	margin: 0 auto;
	width: 4	00px;
}

.section-intro {
	padding: 6rem 0;
	position: relative;
	background: linear-gradient(
		135deg,
		#95e0c5, /* darkest */
		#a9e9d3, /* darker */
		#c3f1e1, /* base */
		#e9fcf6  /* lightest */
	);
}

@media(min-width: 900px) {
	.section-intro .section-narrow {
		margin: initial;
		margin-left: auto;
		max-width: 50%;
	}
}

@media(min-width: 1100px) {
	.section-intro .section-narrow {
		max-width: 60%;
	}
}

@media(min-width: 1300px) {
	.section-intro .section-narrow {
		max-width: 60%;
	}
}

@media(min-width: 1600px) {
	.section-intro .section-narrow {
		margin: auto;
		max-width: var(--narrow-max-width);
	}
}

.tree {

}

@media(min-width: 900px) {
	.tree {
		position: absolute;
		right: initial;
		left: -9rem;
		bottom: 0;
		max-width: 800px;
		opacity: 1;
	}
}

@media(min-width: 1100px) {
	.tree {
		left: -14rem;
		bottom: 0;
		max-width: 800px;
	}
}

@media(min-width: 2100px) {
	.tree {
		left: 0rem;
		bottom: 0;
		max-width: 800px;
	}
}

.rabbit {
	display: none;
}

@media(min-width: 1610px) {
	.rabbit {
		display: block;
		position: absolute;
		right: -3rem;
		bottom: 0;
		max-width: 400px;
	}
}

@media(min-width: 1900px) {
	.rabbit {
		position: absolute;
		right: 12rem;
	}
}

blockquote {
	margin: 2rem auto;
	max-width: 80%;
	color: #c91647;
	font-family: 'NotoSans';
	font-size: 1.5rem;
	font-style: italic;
	font-weight: 700;
	line-height: 1.3;
}

@media(min-width: 900px) {
	blockquote {
		margin: 3rem auto;
		font-size: 2rem;
	}
}

.section-newsletter {
	padding: 4rem 0;
	background: linear-gradient(200deg, #f1e48e, #faff7a, #f6e05d, #f0f39f);
	text-align: center;
}

.snail {
	margin: auto;
	display: block;
}


.section-audio {
	padding: 5rem 0;
	background: linear-gradient(
		225deg,
		#95e0c5, /* darkest */
		#a9e9d3, /* darker */
		#c3f1e1, /* base */
		#e9fcf6  /* lightest */
	);
}

.section-audio h2 {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.ant {
	padding: 4rem;
	display: inline;
}

@media(min-width: 40em) {
	.ant {
		margin-bottom: 0;
		padding: 0;
		margin-right: 1rem;
	}
}

.section-audio .grid-dual {
	display: grid;
	grid-template-columns: 1fr;
	align-items: center;
}


@media(min-width: 40em) {
	.section-audio h2 {
		flex-direction: row;
	}

	.ant {
		max-width: 150px;
	}

	.section-audio .grid-dual {
		grid-template-columns: 1fr 1fr;
	}

}

audio {
	margin: auto;
}


.section-paint {
	position: relative;
	padding: 6rem 0;
	padding-right: 5rem;
	min-height: 50vh;
	position: relative;
	background: linear-gradient(
		135deg,
		#f9dce5, /* soft rose */
		#fcdde9, /* base pastel pink */
		#fdeaf0, /* lighter blush */
		#fff5f9  /* almost white */
	);
}

.section-paint .grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.section-paint h2 {
	text-align: center;
}

.section-paint a {
	position: relative;
	margin: auto;
	text-align: left;
	z-index: 3;
}

.section-paint a:hover {
	color: white;
	text-decoration: none;
}

.section-paint .mikel {
	position: absolute;
	right: -3rem;
	bottom: 0;
	max-width: 12rem;
}

@media(min-width: 40em) {
	.section-paint .mikel {
		right: 2rem;
		max-width: 15rem;
	}
}

@media(min-width: 62.5em) {
	.section-paint .mikel {
		right: 10rem;
		max-width: 13rem;
	}
}

.fairy {
	position: absolute;
	left: -9rem;
	top: 27rem;
	max-width: 400px;
}

@media(min-width: 37.5em) {
	.fairy {
		top: 20rem;
		max-width: 600px
	}
}


@media(min-width: 62.5em) {
	.fairy {
		position: absolute;
		left: -18rem;
		top: 17rem;
		max-width: 800px
	}
}



.site-footer {
	padding: 5rem 0;
	font: var(--s);
	background-color: salmon;
	text-align: center;
	background: linear-gradient(
    175deg,
    #bcdcf7, /* gentle sky blue */
    #c9e4fa, /* base soft blue */
    #d9edfc, /* lighter pastel blue */
    #f2f9ff  /* near white highlight */
  );
}
















.skip-link {
	position: absolute !important;
	top: -10rem;
	left: 0;
	z-index: 2;
	transition: none !important;
}

a.skip-link:focus {
	top: 1rem;
	left: 1rem;
	text-decoration: none;
	background-color: white;
	transition: none !important;
}


