body { 
  background-color: #005DC9;
  color: white;
  font-family: Georgia, serif;
  }
.note {
  margin-left: 20px;
  margin-right: 20px;
  padding: 10px;
  border: 1px solid white;
  border-radius: 10px;
  background: #4385D2;
  }
.caption {
  text-align: center;
  font-style: italic;
  font-size: 1em;
  margin-bottom: 64px;
  }
.head-caption {
  text-align: center;
  font-style: italic;
  font-size: 1.4em;
  margin-bottom: 14px;
  }
.img-box { 
  text-align: center;
  margin-top: 0;
  padding-top: 0;
  }
.img-box img {
  border: 5px solid white;
  box-shadow: 0 0 0 5px #62B5E5;
}
.head-img-box {
  text-align: center;
  margin-top: 80px;
  margin-bottom: 80px;
  }
  
.head-img-box img {
  border: 12px solid white;
  box-shadow: 0 0 0 12px #62B5E5;
}

h1 { font-size: 2.4em; }
table td h2 { 
  font-size: 1.5em; 
  padding: 0px;
  }
table td h3 { 
  font-size: 1.8em;
  padding: 0px;
  }

a:link { color: white; }
a:visited { color: white; }
table {
  color: white;
  border-collapse: collapse;
  }
td {
  border-collapse: collapse;
  }
iframe {
  text-color: white; 
  border: none;
  }
.main-text {
  color: white;
  vertical-align: top;
  text-align: left;
  font-size: 1.4em;
  line-height: 1.5em;
  margin-left: 20px;
  }
.page-title {
  color: white;
  font-size: 2.4em;
  text-align: center;
  margin-bottom: 20px;
  margin-left: 20px;
  margin-top: 10px;
  font-style: italic;
  font-weight: bold;
  }
.page-subtitle {
  color: white;
  font-size: 2em;
  text-align: center;
  margin-bottom: 0px;
  margin-left: 20px;
  margin-top: 10px;
  }
.sub-head {
  font-size: 1.5em;
  line-height: 1.6em;
  text-align: left;
  margin-bottom: 0px;
  margin-top: 10px;
  font-weight: bold;
  }
.list {
  margin-top: 0px;
  font-size: 1em;
  }
.top-left {
  vertical-align: top;
  text-align: left;
  }
.center-horizontal {
  text-align: center;
  }
  /* Container holding the cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px; /* 15px spacing between the cards */
    padding: 15px; /* Optional: padding around the container */
}
/* Individual card styling */
.card-box {
    border: 1px solid #fff;
	border-radius: 10px;
    padding: 10px;
    text-align: center;
}
.card-box:hover {
	border: 3px solid #fff;
	padding: 2px;
    box-shadow: 5px 5px 0px rgba(255, 255, 255, 0.5);
}
.card-box img {
    max-width: 200px;
    height: auto;
    display: block;
    margin: 0 auto;
}
.gallery-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-image {
  max-width: 90%;
  height: auto;
  border: 5px solid white;
  box-shadow: 0 0 0 5px #62B5E5;
}
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  z-index: 10;
}
.left-arrow {
  left: -60px; /* adjust spacing from image */
}
.right-arrow {
  right: -60px; /* adjust spacing from image */
}
.arrow img {
  width: 100%;
  height: auto;
}

