body {
	background-color: #ecf0f1;
	font-family: Arial, sans-serif;
	font-size: 10.5pt;
	line-height: 1.4;
	margin: 0px;
	color: #454545;
}

h1{ 
	line-height: 1;
	margin: 0px;
	color: #223855;
 }

img {
	max-width: 100%;
}

img.thumb {
	float: left;
	max-width: 120px;
	padding-right: 5px;
}

a:link {
	color: blue;
	font-weight: bold;
}

a:visited {
	color: blue;
	font-weight: bold;
}

nav {
	display: flex;
	position: fixed;
	width: 100%;
	height: 65px;
	align-items: center;
	background-color: #2b2b35;
	bacolor: #ffffff;
	text-align: left;
	color: #ecf0f1;
}

nav img {
	max-width: 180px;
	max-height: 35px;
	margin: 20px;
}

nav a:link {
	color: white;
	text-decoration: none;
}

nav a:visited {
	color: white;
	text-decoration: none;
}

div.box {
	background-color: #7f8996;
	color: #eee;
	padding: 5px;
	margin-top: 10px;
	border-radius: 5px;
}

small {
	color: #7f8996;
}

.content {
	max-width: 1200px;
	margin: 0px auto;
	padding: 15px;
}

article {
	max-width: 1200px;
	margin: 0px auto;
	padding-top: 6em;
	padding-bottom: 2em;
	padding-left: 1em;
	padding-right: 1em;
} 

section.hero {
	background-color: #0c0c0c;
	background-image: url("images/banner.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	color: #FFFFFF;
	height: 30vh;       /* 30% of the viewport height */
	padding: 2rem;       /* optional: internal spacing */
	display: flex;       /* optional: for centering content */
	align-items: center; /* optional: vertical centering */
	justify-content: center; /* optional: horizontal centering */
}

section.hero h1 {
	font-size: 3em;
	color: white;
}

/* .image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 5px;
  padding: 0px;
}

.image-grid img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 0px;
  box-shadow: 0 0px 0px rgba(0, 0, 0, 0.1);
} */

.image-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.image-grid img {
  width: calc(33.333% - 5px);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}