/* Apply Flexbox to the entire page */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
}

/* Ensure the main content takes up remaining space */
main {
  flex: 1;
}

/* Footer styling */
footer {
  background-color: #005288;
  color: white;
  text-align: center;
  padding: 10px 0;
  border-top: 3px solid #0277BD;
  position: relative;
  bottom: 0;
  width: 100%;
}


.container {
  width: 80%;
  margin: auto;
  overflow: hidden;
}

header {
  background: #005288;
  color: #ffffff;
  padding-top: 30px;
  min-height: 70px;
  border-bottom: #0277BD solid 3px;
}

header a {
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
}

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

header li {
  display: inline;
  margin: 0 20px;
}

header #branding {
  float: left;
}

header #branding h1 {
  margin: 0;
}

header nav {
  float: right;
  margin-top: 10px;
}

header .highlight,
header .current a {
  color: #e9ff70;
  font-weight: bold;
}

header a:hover {
  color: #ffffff;
  font-weight: bold;
}

/* Highlight the active link */
nav ul li a.active {
  color: #e9ff70; /* Highlight color */
  font-weight: bold;
  border-bottom: 2px solid #e9ff70;
}

.about-section {
  padding: 50px 0;
  background: #e8f4f8;
}

.about-section h1,
.about-section p {
  margin-bottom: 20px;
}

.about-section h1 {
  margin-top: 0;
  color: #0277BD;
}

iframe {
  width: 100%;
  height: 600px;
  /* Adjust height as needed */
  border: none;
}

body {
  background-image: url('/images/background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.marquee {
  width: 100%;
  overflow: hidden;
  background: transparent;
  /* Transparent background */
  color: hwb(56 33% 0%);
  /* Text color */
  white-space: nowrap;
  box-sizing: border-box;
}

.marquee p {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 10s linear infinite;
  /* Adjust the time as needed */
  font-family: 'Roboto', sans-serif;
  font-size: 50px;
  /* Change this value to increase or decrease the font size */

}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.hero {
  background-color: #074f57;
  background-image: url("//images/background.jpg");
  color: white;
  padding-top: 200px;
  padding-bottom: 200px;
}

.container {
  width: 90%; /* Use a higher percentage for small devices */
  max-width: 960px; /* Cap the width for larger screens */
  margin: auto;
  overflow: hidden;
}

.marquee p {
  font-family: 'Arial', sans-serif;
  /* Other styles */
}



footer {
  background-color: #005288;
  color: #ffffff;
  text-align: center;
  padding: 10px 0;
  border-top: 3px solid #0277BD;
  width: 100%;
  margin-top: auto;
  position: relative;
}

footer p {
  margin: 0;
  /* Removes default margin from the paragraph */
}
.indented {
  text-indent: 1.5em;
  margin: 0; /* Removes the default margin between paragraphs */
  line-height: 1.4; /* Optional: Adjust line spacing if needed */
}

.indented2 {
  text-indent: 3em;
  margin: 0; /* Removes the default margin between paragraphs */
  line-height: 1.4; /* Optional: Adjust line spacing if needed */
}
@media (max-width: 768px) {
  .container {
    width: 95%; /* More width for smaller devices */
    padding: 10px;
  }

  .indented, .indented2 {
    text-indent: 1em; /* Reduce indent for better readability */
  }

  h1, h3, h4, p {
    font-size: 1rem; /* Scale down font sizes */
  }
}
