html,
body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  left: 0;
  top: 0;
  font-size: 100%;
}

.serif-extralight {
  font-family: "Source Serif 4", serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
}

.serif-regular {
  font-family: "Source Serif 4", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.serif-semibold {
  font-family: "Source Serif 4", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.serif-bolder {
  font-family: "Source Serif 4", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.sans-bold {
  font-family: "Source Sans 3", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

body,h1,h2,h3 {
  color: #333; /* Dark gray */
}

p {
  font-size: 150%;
  font-weight: 400;
  list-style: disc outside;
  font-family: "Source Serif 4";
  margin-top: 0;
}

ul {
  margin-top: 0;
  margin-bottom: 0;
  //padding-left: 0; /* hanging bullets */
}

li {
  font-size: 125%;
  font-weight: 450;
  list-style: disc outside;
  font-family: "Source Serif 4";
}

h1 {
  font-size: 400%;
  font-weight: 900;
  line-height: 80%;
  font-family: "Source Sans 3"; 
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0;
}

h2 {
  font-size: 175%;
  font-weight: 900;
  line-height: 100%;
  font-family: "Source Sans 3"; 
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 30px;
  margin-bottom: 10px;
}

h3 {
  font-size: 215%;
  font-weight: 700;
  font-family: "Source Serif 4";
}

h4 {
  font-size: 150%;
  font-weight: 800;
  font-family: "Source Serif 4";
  letter-spacing: 0.5px;
  margin-bottom: 0;
}

a {
  text-decoration: none;
  font-weight: bold;
}

/* Focus indicator for keyboard navigation */
a:focus, button:focus {
  outline: 3px solid #005a9c; /* Visible focus outline with good contrast */
}

.globalnav {
  position: sticky;
  overflow: hidden;
  top: 0;
  padding: 20px 0px;
  background: #cce2d3e7;
  // color: #f6f6f6;
  //display: flex;
  //justify-content: center;
  //align-items: center;
  //margin: 0;
  min-width: 300px;  
  max-width: 100%; 
  //min-width: 100%; 
  //min-height: 100px;
}

nav ul {
  list-style: none;
  padding: 0;
}

nav li {
  display: inline-block;
  margin-right: 15px;
  margin-left: 0px;
  margin-top: 0;
  margin-bottom: 0;
  font-family: "Source Sans 3"; 
  font-size: 90%;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 40px;
}

footer {
  display: flex;
  //justify-content: center;
  //align-items: center;
  height: 100px;
  min-width: 300px;  
  padding: 20px 0px 100px 0px;
  background: #cce2d3e7;
 
}

footer ul {
  list-style: none;
  padding: 0;
}

footer li {
  display: inline-block;
  margin-right: 15px;
  margin-left: 0px;
  font-family: "Source Sans 3"; 
  font-size: 90%;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 40px;
}

img {
  max-width: 100%
}

.container {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 600px) {
  .container {
    width: 95%;
    max-width: 600px;
    min-width: 300px;  
  }
}

@media screen and (max-width: 960px) {
  .container {
    width: 90%;
    max-width: 600px;
    min-width: 300px;  
  }
}


