body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #cccccc;  /* Updated background color */
  color: rgb(255, 255, 255);  /* Set the text color for the entire page */
}

header {
  background-color: #000000;  /* Updated header color */
  padding: 0px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  position:fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.white-strip {
  background-color: #ffffff;
  height: 5px;
  width: 100%;
 margin-top: auto;
}

nav {
  display: flex;
  justify-content: center;
  align-items: center;
}

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

nav ul.left-links {
  margin-right: 50px ;
}

nav ul.right-links {
  margin-left: 50px ;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  text-decoration: none;
  color: white;  /* Set the text color for the navigation links */
  font-size: 18px;
  padding: 0px px;
  border: 2px solid transparent;
  transition: 0.3s;
}

nav ul li a:hover, nav ul li a.active {
  border-bottom: 2px solid white;
  font-weight: bold;
}

.header-image {
  width: 100px;  /* Set the width to 150px */
  height: auto;  /* Set the height to auto */
  margin-top: 0px ; 
  margin-bottom: -15px ; 
  align-items: center;
}

main {
  text-align: center;
  margin-top: 150px ;
}

h1 {
  font-family: 'Impact', sans-serif;  /* Ensure Impact font */
  text-transform: uppercase;
  letter-spacing: 2px;  /* Adjust the spacing as needed */
  font-size: 60px;  /* Set the desired font size */
  font-weight: normal;  /* Make the text normal weight */
}

h2 {
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-size: 50px ;
  font-weight: 550;
  text-align: center;
  color: #000000;
}

/* Styles for paragraph text */
p {
  font-family: 'Helvetica', sans-serif;  /* Set the desired font family */
  font-size: 16px;  /* Set the desired font size */
  letter-spacing: 1px;  /* Adjust the letter spacing as needed */
  color: #ffffff;  /* Set the desired text color */
  font-weight: normal;  /* Set the desired font weight */
  line-height: 2;  /* Set the desired line height */
  text-align: left;  /* Center the text */
  text-indent: 20px;  /* Indent the text */
}
#ArticleTitle {
 max-width: 1000px;
  margin: 0 auto;      /* center the column */
  padding: 24px;
}
#ArticleInfo p {
 font-family: Verdana, Geneva, Tahoma, sans-serif;
font-size: 10pt;
text-align: center;
color: #585858;
}
#ArticleBody {
  max-width: 1000px;
  margin: 0 auto;      /* center the column */
  padding: 24px;
}
#ArticleBody p {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 12pt;
  line-height: 2.25;
  text-align: left;
  color: #434343;
  font-weight: 525;
  margin: 50px ;
}
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

.slide {
  display: none;
}

.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 2s; /* Adjust the animation duration */
  animation-name: fade;
  animation-duration: 2s; /* Adjust the animation duration */
}

@-webkit-keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

/* Styles for about page content */
.content-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
}

.about-image {
  width: 400px;  /* Adjust the width as needed */
  margin-left: 20px;  /* Space between the image and the text */
}

@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .about-image {
    margin-bottom: 20px;
    margin-left: 0;
  }
}
/* Styles for the footer */
footer {
  background: linear-gradient(to top, #000000, #434343); /* Gradient background */
  color: white; /* Sets the text color to white for contrast */
  padding: 20px; /* Adjust the padding as needed */
  display: flex; /* Use flex layout */
  flex-direction: column; /* Arrange child elements in a column */
  text-align: left; /* Align text to the left */
  font-family: Helvetica, Arial, sans-serif; /* Sets the font to Helvetica */
  font-size: 21px; /* Sets the font size to 21 */
}

footer .footer-content {
  display: flex; /* Use flex layout */
  justify-content: space-between; /* Separate content to the left and right sides */
  align-items: center; /* Aligns items vertically in the center */
  width: 100%;
  flex-wrap: wrap; /* Allow wrapping if necessary */
}

footer .left-side {
  flex: 1; /* Adjust flex to take up available space */
  display: flex; /* Use flex layout */
  flex-direction: column; /* Arrange child elements in a column */
  align-items: center; /* Center align child elements horizontally */
  text-align: center; /* Center-align the text inside elements */
}

footer .left-side p {
  font-family: Helvetica, Arial, sans-serif; /* Change the font */
  font-size: 21px; /* Change the font size */
  font-weight: bold; /* Change the font weight */
}

/* Style for search form */
footer .left-side #search-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10px;
}

footer .left-side #search-input {
  padding: 5px;
  width: 200%;
  border-radius: 10px;
  border: 5px solid #595959;
  margin-bottom: 5px;
  line-height: 1.5;
}

footer .left-side #search-form button {
  padding: 5px 10px;
  background-color: grey;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}


footer .separator {
  width: 2px; /* Adjust the width of the separator */
  background-color: grey; /* Set the color of the separator */
  height: 100%; /* Ensure it spans the full height of the footer content */
  margin: 0 10px; /* Add some margin for spacing */
}

footer .right-side {
  flex: 1; /* Adjust flex to take up available space */
  display: flex; /* Use flex layout */
  justify-content: space-around; /* Distribute columns evenly */
  text-align: center; /* Center-align the text */
}

footer .right-side .column {
  width: 30%; /* Adjust the width of each column */
}

footer .right-side .column h3 {
  margin-bottom: 10px; /* Add space below the column headings */
  border-bottom: 1px solid grey; /* Thin line under each column title */
  padding-bottom: 0px; /* Add padding below the column title */
  font-family: Helvetica, Arial, sans-serif; /* Allows font to be changed */
  font-size: 18px; /* Allows font size to be changed */
}

footer .right-side .column ul {
  list-style: none; /* Remove default list styling */
  padding: 0;
}

footer .right-side .column ul li {
  margin: 15px 0; /* Add space between each link */
  display: flex; /* Align items horizontally */
  align-items: center; /* Center align items vertically */
  justify-content: center; /* Center align items horizontally */
}

footer .right-side .column ul li img {
  margin-right: 5px; /* Space between icon and text */
  width: 20px; /* Adjust icon width */
  height: 20px; /* Adjust icon height */
}

footer .right-side .column ul li a {
  color: white; /* Ensure text color is white */
  text-decoration: none; /* Remove default underline */
  font-family: Helvetica, Arial, sans-serif; /* Allows font to be changed */
  font-size: 16px; /* Allows font size to be changed */
  font-weight: normal; /* Allows font weight to be changed */
}

footer .right-side .column ul li a:hover {
  text-decoration: underline; /* Underline on hover */
}

footer .footer-bottom {
  width: 100%; /* Ensure it spans the full width of the footer */
  padding: 0px; /* Add some padding for content */
  text-align: center; /* Center-align the text */
  font-size: 18px; /* Adjust the font size as needed */
  color: white; /* Ensure text color is white */
  margin-top: 0px; /* Add space between the footer content and the bottom section */
  display: flex; /* Use flex layout */
  justify-content: space-between; /* Space out the left and right sides */
  align-items: center; /* Center items vertically */
  position: relative; /* Ensure the pseudo-element is positioned correctly */
}

footer .footer-bottom .bottom-left {
  flex: 1; /* Adjust flex to take up available space */
  text-align: center; /* Center-align the text */
}

footer .footer-bottom .bottom-right {
  flex: 1; /* Adjust flex to take up available space */
  text-align: right; /* Align text to the right */
}

footer .footer-bottom .bottom-right ul {
  list-style: none; /* Remove default list styling */
  padding: 0;
  display: flex; /* Use flex layout */
  justify-content: space-around; /* Distribute links evenly */
  flex-wrap: wrap; /* Allow wrapping if necessary */
}

footer .footer-bottom .bottom-right ul li {
  margin: 0 px; /* Add some space between each link */
  line-height: 2.5; /* Adjust the line height for spacing */
}

footer .footer-bottom .bottom-right ul li a {
  color: white; /* Ensure text color is white */
  text-decoration: none; /* Remove default underline */
  font-family: Helvetica, Arial, sans-serif; /* Allows font to be changed */
  font-size: 16px; /* Allows font size to be changed */
  font-weight: normal; /* Allows font weight to be changed */
}

footer .footer-bottom .bottom-right ul li a:hover {
  text-decoration: underline; /* Underline on hover */
}

footer .footer-bottom::before {
  content: "";
  width: 95%; /* Adjust the width to your preference */
  border-top: 1px solid grey; /* Add the border */
  position: absolute; /* Position it within the footer-bottom */
  top: 0; /* Position it at the top of the footer-bottom */
  left: 50%; /* Center it horizontally */
  transform: translateX(-50%); /* Adjust for correct centering */
}




