<style>
nav
{
	background-color: #222;
font-family: 'Montserrat', Arial, sans-serif;
	color: #FFF;
        display: flex; /* Make the nav a flex container */
        justify-content: center; /* Center the menu items horizontally */
}
    /* Basic styles for the button */
    .menu-button {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: none;
      border: none;
      padding: 10px;
padding-top: 28px;
padding-bottom: 28px;
      cursor: pointer;
font-family: 'Montserrat', Arial, sans-serif;
      font-size: 16px;
      font-weight: bold;
	color: #FFF;
    }

    /* Dropdown container styling */
    .dropdown {
      display: none;
      position: absolute;
      background-color: #000;
      border: 1px solid #ccc;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
      padding: 10px;
      z-index: 1000;
    }

    /* Display dropdown on hover of the menu item */
    .menu-item:hover .dropdown {
      display: block;
    }

    /* List styles */
    .menu-list {
      margin: 0;
      padding: 0;
      display: flex;
      align-items: center;
    }

.menu-list .menu-link a {
    color: #FFF !important;
    font-weight: bold;
}

    .menu-list li {
      margin-right: 20px;
 list-style-type: none;

    }

    .menu-list li a {
      text-decoration: none;
      color: #aaa;
      padding: 7px 1px;
/* margin-left: -30px; */
      display: block;
    }

.menu-icon {
  fill: white; /* Change this to any color you prefer */
}

    /* Hover effect for each menu item */
    .menu-list li a:hover {
      background-color: #fc9403; /* Light gray background on hover */
      color: #0073e6; /* Optional: Change text color on hover */
    }
	
/* Ensure the parent container (menu) has a defined height */.menu-container {
  height: 60px; /* Example height, adjust as needed */display: flex;
  align-items: center; /* Vertically center items */
}

/* Scale the logo to 100% of the parent container height */.menu-logo {
  height: 100%; /* Makes the logo fill the container's height */width: auto;  /* Maintains the aspect ratio */
}

/* Optional: Remove extra space around the logo link */.menu-linka {
  display: inline-block;
  height: 100%;
}
html, body {
    height: 100%; /* Ensure the body takes the full height of the viewport */
    margin: 0; /* Remove default margin */
    display: flex;
    justify-content: center; /* Horizontally center */
    align-items: center; /* Vertically center */
}

body {
    position: relative;
	 /* unvisited link */
a:link {
  color: #FFA;
}

/* visited link */
a:visited {
  color: #FFA;;
}

/* mouse over link */
a:hover {
  color: #ff9933;
}

/* selected link */
a:active {
  color: #ff9933;
} 

#content {
    width: 1000px;
    background-color: rgba(0, 0, 0, 0.8); /* Transparent black background */
    padding: 20px;
    box-sizing: border-box;
    z-index: 1; /* Ensure it's above the video background */
    text-align: left; /* Ensure text is left-aligned */
	margin-left: auto;
	margin-right: auto;
}

.video-background {
    position: fixed; /* Cover the entire viewport */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Maintain aspect ratio while covering the viewport */
    z-index: -1; /* Behind the content */
}
</style>