.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    color: #fff;
    padding: 10px;
    z-index: 999;
  }
  
  .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }


  .nav-text p {
    white-space: pre-wrap;
    font-size: 18px;
    line-height: 0.8;
    text-align: left;
    margin-left: 20px;
  }
  
  .nav-text p b {
    font-size: 24px;
    text-align: left;
    margin-left: 55px;
  }
  
  .nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px; /* Adjust gap value as needed */
    padding-right: 80px;
  }
  
  .nav li {
    margin: 0;
  }
  
  .nav a {
    text-decoration: none;
    color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: normal;
    font-size: 18px;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
  }

  .nav p {
    text-decoration: none;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: normal;
    font-size: 24px;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
  }
  
  .nav-logo {
    margin-left: 10px;
    margin-right: 10px;
  }
  
  .menu-toggle {
    display: none;
    cursor: pointer;
    user-select: none;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    /* Add styles for the hamburger menu icon */
    /* Example using pseudo-elements */
    /* You can customize the width, height, and background color */
  }
  
  .menu-toggle::before,
  .menu-toggle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 2px;
    background-color: #fff;
  }
  
  .menu-toggle::after {
    margin-top: 5px;
  }

  @media (max-width: 1200px) {
    .nav-text {
      display: none;
    }
  }
  

  

body {
    margin: 0;
    padding: 20;
    font-family: serif;
}

.map {
  margin: 0;
  font-family: sans-serif;
} 

#map {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 600px;
}

#time-info {
    position: fixed;
    width: 60vw;
    bottom: 0;
    z-index: 1;
    margin: 10px;
    text-shadow: 0px 0px 5px black;
    color: white;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    left: 0;
    right: 0;
    margin: auto;
    padding: 20px;
}

#time-slider {
    width: 100%;
    height: fit-content;
    left: 0;
    right: 0;
    z-index: 1;
    filter: drop-shadow(0 0 7px #000a);
    margin-top: 10px;
}

#time-text {
    font-size: 12px;
    font-weight: 600;
}

#pointer-data {
    z-index: 1;
    position: fixed;
    font-size: 20px;
    font-weight: 900;
    margin: 147px 0px 0px 10px;
    color: #fff;
    text-shadow: 0px 0px 10px #0007;
}

#variable-name {
    z-index: 1;
    position: fixed;
    font-size: 20px;
    font-weight: 500;
    margin: 125px 0px 0px 10px;
    color: #fff;
    text-shadow: 0px 0px 10px #0007;
}

.button {
    cursor: pointer;
    width: auto;
    padding: 8px;
    border-radius: 3px;
    font-size: 10px;
    text-align: center;
    color: #fff;
    background: #3174ff;
    font-family: sans-serif;
    font-weight: bold;
}


.container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Adjust column width as needed */
  grid-gap: 10px; /* Adjust gap between columns */
  margin-top: 600px; /* Adjust margin based on your layout */
}

.column {
  position: relative; /* Establishes a positioning context for absolutely positioned children */
  overflow: hidden; /* Ensures text and image do not overflow the container */
}

.column img {
  width: 100%; /* Make images fill the width of the column */
  height: auto; /* Maintain aspect ratio */
  display: block; /* Prevent extra space below images */
}

.column p {
  position: absolute; /* Position text absolutely within the .column container */
  top: 20%; /* Adjust to position text at the top of the image */
  left: 50%; /* Center text horizontally */
  transform: translateX(-50%); /* Adjust centering due to left positioning */
  color: white; /* Text color for visibility */
  font-size: 28px; /* Font size */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: normal;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background for better text readability */
  padding: 5px 10px; /* Padding around the text */
  border-radius: 5px; /* Optional: rounded corners for the text background */
  text-align: center; /* Center text within the p element */
}





@media (max-width: 768px) {
  .nav ul {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav.active ul {
    display: block;
    background-color: #333;
    padding: 10px;
  }
  .nav-text {
    margin-left: 10px; /* Adjust margin for smaller screens */
  }

  .nav-logo {
    margin-right: 10px;
  }

  .container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Adjust column width as needed */
      grid-gap: 10px; /* Adjust gap between columns */
      margin-top: 300px; /* Adjust margin based on your layout */
    }

  #map {
      height: 300px; /* Adjust height as needed for mobile */
    }
}