html, body {
  height: 100%;
  margin: 0;
  font-family: 'Poppins', sans-serif;
}
.navbar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #28a745;
    padding: 15px 20px;
    position: sticky;
    top: 0;
    width: 100%;
  }

  .navbar a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
  }

  .navbar a:hover {
    color: #f0f0f0;
  }
.navbar.dark-theme {
  background-color: #2e2e2e;
  color: white;
}
.navbar.green-theme {
  background-color: #e6ffe6;
  color: #002300;
}
.navbar.alt-theme {
  background-color: #85143c;
  color: #ffffff;
}
.navbar.alt-theme2 {
  background-color: #34344A;
  color: #ffffff;
}
/* Add this CSS inside your <style> tags or an external stylesheet */
#loadingScreen {
    display: none; /* Initially hidden */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    justify-content: center;
    align-items: center;
    z-index: 1000;
}


#gameContainer {
  padding: 20px;
}

#mapContainer {
  width: 100%;
  height: 60vh;
}

#imageContainer {
  margin-top: 20px;
  text-align: center;
}

.controls {
  margin: 20px;
}

img {
  max-width: auto;
  max-height: 80%;
}

#scoreDisplay, #timerDisplay {
  margin-bottom: 10px;
}
