/*resets*/
*, *::before, *::after {
	box-sizing: border-box;
}
* {
	margin: 0;
	padding: 0;
	font-family: "Lora", serif;
}
@media (prefers-reduced-motion: no-preference) {
	html {
		interpolate-size: allow-keywords;
	}

}
body {
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	color: #343837;
}
img, picture, video, canvas, svg {
	display: block;
	max-width: 100%;
}
input, button, textarea, select {
	font: inherit;
}
p, h1, h2, h3, h4, h5, h6 {
	overflow-wrap: break-word;
}
p {
	text-wrap: pretty;
}
h1, h2, h3, h4, h5, h6 {
	text-wrap: balance;
}
#root, #__next {
	isolation: isolate;
}
html {
	--offwhite: #F5F5F5;
	--gold: #BFAB25;
	--darkteal: #055864;
	--lightteal: #026C7C;
	--lightpink: #B81365;
	--darkpink: #6A0136;
	--button1a: #b24342;
	--button1b: #5f4256;
	--button2a:;
	--button2b:;
  
	/* BACKGROUND PATTERN */
	--s: 42px; /* control the size*/
	--c1: #026C7C;
	--c2: #055864;
	--_g: radial-gradient(#0000 60%,var(--c1) 61% 63%,#0000 64% 77%,var(--c1) 78% 80%,#0000 81%);
	--_c: ,#0000 75%,var(--c2) 0;
	background: conic-gradient(at 12% 20% var(--_c)) calc(var(--s)* .44) calc(.9*var(--s)),
	conic-gradient(at 12% 20% var(--_c)) calc(var(--s)*-.06) calc(.4*var(--s)),
	conic-gradient(at 20% 12% var(--_c)) calc(.9*var(--s)) calc(var(--s)* .44),
	conic-gradient(at 20% 12% var(--_c)) calc(.4*var(--s)) calc(var(--s)*-.06),
	var(--_g),var(--_g) calc(var(--s)/2) calc(var(--s)/2) var(--c2);
	background-size: var(--s) var(--s);
}

main {
	background: var(--offwhite);
	width: 800px;
	margin: 35px auto;
	max-width: 90%;
	border-radius: 10px;
	padding: 20px;
}

.title, .subtitle {
	text-align: center;
	/*text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;*/
}

.title {
	color: var(--gold);
	text-transform: uppercase;
	letter-spacing: 10px;
	font-size: 52px;
	line-height: 100%;
	padding-bottom: 10px;
	margin-top: 30px;
}

.subtitle {
	color: var(--darkteal);
	font-weight: 300;
}

nav {
	text-align: center;
	margin-top: 15px;
	display: none;
}

nav li {
	display: inline;
	margin: 0 10px;
}

nav li a {
	background: var(--button1a);
	color: var(--offwhite);
	text-decoration: none;
	padding: 10px 20px;
	border-radius: 10px;
	box-shadow: rgba(0, 0, 0, 0.1) 1px 2px 4px;
}

nav li a:hover {
	background: var(--button1b);
}

section {
	margin: 50px auto;
	/*text-align: center;*/
	width: 85%;
}

section a {
	color: var(--lightpink);
	text-decoration: none;
	border-bottom: 1px solid var(--lightpink);
}

section a:hover {
	color: var(--darkpink);
	border-bottom: 1px solid var(--darkpink);
}

#about h2 {
	color: var(--lightpink);
}

#divider {
  height: 2px;
  width: 80%;
  background: blue;
  background: linear-gradient(90deg, hsl(0, 0%, 20%), hsl(0, 0%, 70%), hsl(0, 0%, 20%));
  display: none;
}
p + p {
	margin-top: 10px;
}
p + h2 {
	margin-top: 20px;
}

.envelope {
  content: "\2709";
}

@media screen and (max-width:572px) {
	.title {
		font-size: 42px;
		letter-spacing: 8px;
	}
}


@media screen and (max-width:528px) {
	nav li {
		display: block;
		margin: 20px 0;
	}
}

@media screen and (max-width:335px) {
	.title {
		line-height: 100%;
		font-size: 42px;
		letter-spacing: 0;
	}
}