:root {
    --md-primary-fg-color:        #000028;
    --md-primary-fg-color--light: #23395d;
    --md-primary-fg-color--dark:  #00001f;
  }

  .center {
    display: block;
    margin: 0 auto;
    max-width: "600";
}

body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}

.landing-page {
  position:relative;
}

.landing-image {
  position: relative;
  top: 0%;
  width: 100%;
  height: 100vh;
  background: url('../assets/path.png') no-repeat center center fixed;
  background-size: cover;
  z-index: -1;
}

.content {
  position: relative;
  margin-top: 10vh; /* Space for fixed nav bar */
  padding: 1vh 1vw;
  z-index: 1;
  position: relative;
  background: white;
}

.landing-content {
  position: fixed;
  top: 16vh;
  left: 0vw;
  /* transform: translate(-50%, -50%); */
  width: 100%;
  color: white;
  text-align: center;
  background: rgba(255, 255, 255, 1);
  padding: 1vh;
  border-radius: 0px;
  z-index: 3;
  transition: top 0.5s ease-in-out, transform 0.5s ease-in-out, background 0.3s;
}

.landing-content.solid {
  background: rgba(0, 0, 0, 1); /* Solid background when scrolled */
}

.landing-content h1 {
  padding-top: 2vh;
  margin: 0;
  font-size: 2em;
  color: white;
  line-height:1vw;
  -webkit-text-shadow:2px 2px 4px rgba(0, 0, 0, 0.5);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Adjust the values as needed */
}

.landing-content p {
  font-size: 1.2vw;
  color: #000028;
  line-height:1vw;
}

.landing-message {
  position: fixed;
  top: 50%;
  left: 0vw;
  /* transform: translate(-50%, -50%); */
  width: 100%;
  color: white;
  text-align: center;
  background: rgba(0, 0, 0, .5);
  padding: 1vh;
  border-radius: 0px;
  z-index: 0;
  transition: top 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.nav-bar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 10vh;
  background: #000028;
  color: white;
  padding: 1vw 3vw; /* Adjust padding to your preference */
  z-index: 3; /* Ensure nav bar is on top of the landing page content */
  display: flex;
  align-items: center; /* Vertically center items */
}

.navbar-header {
  display: flex;
  align-items: center;
  width: 100%;
  padding-bottom: 2vh;
  padding-top: 5px;
  padding-left: 1vw;
}

.navbar-header img {
  height: 25px;
  max-height: 30px;
  object-fit: contain; 
  padding-right: 30px;
}

.navbar-header .name {
    color: white;
    font-size: 18px;
    margin-top: 5px;
    font: Roboto;
}


.nav-bar .nav-links {
  display: flex;
  gap: 26px; /* Space between links */
  padding-left: 1vw; /* Increase space on the left */
  padding-bottom: 10px;
  font: Roboto;
}

.nav-bar .nav-links a {
  color: white; /* Default link color */
  text-decoration: none;
  font-size: 0.85em;
  margin: 101 20px; /* Add margin between links */
  border: 1px solid transparent;
  opacity: 0.7; /* Slightly transparent by default */
  background-color: transparent;
}

.nav-bar .nav-links a:active {
  opacity: 1; /* Fully opaque for the active link */
  /* color: white; Active link */
  background-color: white; /* Solid white background color for the active link */
  color: #333; /* Dark text color for better contrast */
}


.nav-bar .nav-links a:hover {
  text-decoration: underline;
}

a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:active {
  text-decoration: underline;
}

@media (max-width: 1200px) {
  .HideOnMobile {
    display: none;
  }
  .ShowOnMobile {
    display: initial;
  }
  .landing-content {
    position: fixed;
    top: 10vh;
  }
  .landing-content h1 {
    margin: 0;
    font-size: 2em;
    color: white;
    line-height:1.5em;
    -webkit-text-shadow:2px 2px 4px rgba(0, 0, 0, 0.5);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Adjust the values as needed */
  }
  .landing-content p {
    font-size: 1em;
    color: #000028;
    line-height:1.5vh;
    /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);  */
  }

  .navbar-header {
    padding-bottom: 1vh;
    padding-top: 1vh;
  }
  .content {
    padding: 5vh 1vw;
}}

@media (min-width: 1200.01px) {
  .HideOnMobile {
    display: initial;
  }
  .ShowOnMobile {
    display: none;
  }
}