#map {
    height: 80vh;
    width: 70%;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Ensure the body takes up the full viewport height */
    font-family: "Inter", sans-serif;
    background: #fff;
    color: #333;
    position: relative; 
  }

  #title {
    position: fixed;
    top: 30px;
    font-size: 18px;
    z-index: 15;
  }
  
  #legend {
    font-family: "Inter", sans-serif;
    position: absolute;
    top: 10px;
    right: 20px;
    border: 1px solid #ccc;
    padding: 10px;
    font-size: 14px;
}

.legend-item {
    margin: 10px 0;
    right: 20px;
    display: flex;
    align-items: center;
}

.legend-color {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}
