
/* Body */

@font-face {
	font-family: Maiandra;
		src:	url('MaiandraGD.woff2') format('woff2'), 
					url('MaiandraGD.woff') format('woff');
		font-weight: normal;
		font-style: normal;
		font-display: swap;
}

body {
	margin: 0;
	font-family: Maiandra;
	background-color: #FAFAFF;
	min-width: 800px;
}

/* Header */

header {
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1;

	display: grid;
	grid-template-columns: auto 360px 440px auto;
	justify-content: center;
	align-items: center;

	color: #004646;
	/* background-color: #D7D7F4; */
	background-image: linear-gradient(to bottom, #D7D7F4, #F0F0FF);
}

.header-menu {
	display: grid;
	grid-template-rows: 80% 20%;
	align-items: center;
}

.logo-box {
	display: flex;
	align-items: center;
	justify-content: center;
}

.logo {
	width: 100%;
	min-width: 160px;
	max-width: 240px;
	max-height: 240px;
}

.header-text {
	text-align: center;
	font-size: 2.4em;
	font-weight: bold;
}

/* Menu */

nav {
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	text-align: bottom;
}

nav ul {
	list-style: none;
	display: flex;
	
	margin: 0;
	margin-right: 25px;
	padding-bottom: 0px;
}

nav ul li {
	margin-left: 16px;
}

nav ul li a {
	text-decoration: none;
	color: #004646;
	font-size: 1.2em;
	font-weight: bold;
}

nav ul li a:hover {
	text-decoration: underline;
}

/* Sections */

section {
	position: sticky;
	scroll-margin-top: 320px;
	padding: 20px 10px;

	text-align: center;
	font-size: 1em;
	color: #004646;
}

.temp-section {
	padding: 0 0;
	font-family: Arial;
	font-style: italic;
	color: DarkSlateBlue;
}

/* Content */

h2 {
	margin: 0 0 10px 0;
	font-size: 1.5em;
	text-align: center;
}

.box {
	background-color: #FDFDFF;

	border: 1px solid #ccc;
	border-radius: 25px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);

	padding: 20px;
	margin: 0 auto 0 auto;

	max-width: 800px;
}

.bold-text {
	font-size: 1.1em;
	font-weight: bold;
}

.bold-text-plus {
	font-size: 1.2em;
	font-weight: bold;
}

.special-text {
	font-size: 1.5em;
	font-weight: bold;
	background-color: #D7D7F4;
}

body::after {
	content: "";
	display: block;
	height: 40px; /* footer height */
}

/* Footer */

footer {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;

	/* background-color: #D7D7F4; */
	background-image: linear-gradient(to top, #D7D7F4, #F0F0FF);

	color: #004646;
	font-size: 1em;
	text-align: left;

	padding: 10px 10px 10px 10px;
}

/* footer text */
.footer-p {
	padding: 5px 10px 5px 5px;
	display: inline;
}

/* Links */

a:link { /* unvisited */
	color: #004646;
  text-decoration: none;
}
a:visited { /* visited */
	color: #004646;
  text-decoration: none;
}
a:hover {	/* mouse over */
	color: #004646;
  text-decoration: underline;
}
a:active { /* selected */
	color: #004646;
  text-decoration: none;
}
