/* ===============================  Design items  ===============================

Colors
Dark green: 0B5345 
Medium green: 45B39D, #117A65
Light green: E8F6F3
Banner text: parchment white: fcf5e5


Fonts
font-family: 'Almendra', serif;
    Regular: 400
    Bold: 700
    Regular Italic: 400
    Bold Italic: 700
font-family: 'Almendra SC', serif;

   ============================================================================== */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

h1 {
	color: black;
	font-family: "Almendra", serif;
	font-size: 2em;
	font-weight: 700;
	display: block;
	padding-top: 15px;
}

h2,
h3,
h4 {
	color: black;
	font-family: "Almendra", serif;
	font-size: normal;
	font-weight: 700;
	display: block;
	padding: 15px 0px 5px 0px;
}

h2.no-padding {
	color: black;
	font-family: "Almendra", serif;
	font-size: normal;
	font-weight: 700;
	display: block;
	padding: 0px 0px 0px 0px;
}

body {
	background-color: #e8f6f3;
	color: black;
	font-family: serif;
}

.body-main {
	padding: 30px 30px 0px 30px; /* Shorthand order: top, right, bottom, left */
}

.sub-banner {
	background-color: #117a65;
	color: white;
	font-family: "Almendra SC", serif;
	font-size: 2.25em;
	padding: 0px 10px 10px 10px; /* Shorthand order: top, right, bottom, left */
}

.content {
	margin-top: 70px; /* Adjust this margin to avoid content being hidden under the fixed banner */
}

p {
	font-family: "Almendra", serif;
	font-size: normal;
	text-align: left;
	padding: 10px 0px 0px 0px;
}

p.italic {
	font-style: italic;
}

p.box {
	margin: 0px 10px 10px 10px; /* Shorthand order: top, right, bottom, left Takes away the top margin*/
}

/* =============================== LINKS ============================== */

a {
}

a:link {
}

a:visited {
}

a:focus {
}

a:hover {
}

a:active {
}

/* =============================== NAVIGATION STYLES          ============================== */

button {
	font-family: "Almendra", serif;
	font-size: 1.25em;
	padding: 2px 5px 2px 5px;
	background-color: #45b39d;
}

/* =============================== HEADER/FOOTER STYLES       ============================== */

.banner-body {
	/* Styles specific to the body element in banner.html */
	background-color: #0b5345;
	color: #fcf5e5;
	font-family: "Almendra SC", serif;
	font-size: 4em;
	text-align: center;
	padding: 0px 10px 10px 10px; /* Shorthand order: top, right, bottom, left */

	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000; /* Ensure the banner stays on top of other elements */

	/* Add any other styles specific to the banner */
}

.banner-image {
	vertical-align: bottom;
	max-height: 1em;
}

.footer-body {
	background-color: #0b5345;
	color: #fcf5e5;
	font-family: serif;
	font-size: 1.5em;
	text-align: justify;
	padding: 10px; /* Shorthand order: top, right, bottom, left */
}

/* =============================== FLEX-BOX DISPLAY CONTAINER ============================== */

.container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around; /* Adjust as needed */
	align-items: stretch; /* Adjust as needed */
	padding: 10px;
}

.box-image {
	width: 35%; /* Adjust as needed */
	padding: 15px;
	border: 1px solid black;
	box-sizing: border-box;
}

.box-text {
	width: 64%;
	padding: 15px;
	border: 1px solid black;
	box-sizing: border-box;
}

.box-img {
	max-width: 99%;
	max-height: 300px;
}
