* {
    font-family: "Roboto Mono", Arial, Helvetica, sans-serif;
}

body {
  margin: 0;
  padding: 0;
  font-size: 20px;
}

#map {
  height: 100vh;
}

.title {
  position: absolute;
  top: 0;
  left: 0;
  background: darkcyan;
  color: white;
  z-index: 2;
  padding: 1rem 2rem;
  box-shadow: 0 0 10px black;
  border-radius: 0 0 20px;
}

.title span {
  font-size: 50px;
  font-weight: 600;
}

.container{
  bottom: 2.5%;
  right: 2.5%;
}

.popup-button {
    position: absolute;
    top: 5%;
    right: 2.5%;
    z-index: 2;
    padding: 1rem;
    border-radius: 5px;
    font-size: 18px;
    background-color: darkcyan;
    color: white;
    transition-duration: 0.4s;
}
.popup-button:hover{
  background-color: rgb(36, 134, 36);
}

.popup {
  display: none;
  position: fixed;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding-top: 5rem;
  left: 0;
  top: 0;
  overflow: auto;
  pointer-events: none;
  /* background-color: rgba(0,0,0,0.4); */
}

.popup-stuff {
  pointer-events: all;
  background-color: white;
  margin: auto;
  padding: 20px;
  width: 50%;
}

#close {
  color: black;
  float: right;
  cursor: pointer;
}

#close:hover,
#close:focus {
  color: red;
}

.popup2 {
  display: none;
  position: fixed;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding-top: 5rem;
  left: 0;
  top: 0;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.popup2-stuff {
  background-color: white;
  margin: auto;
  padding: 20px;
  width: 50%;
}

#close2 {
  color: black;
  float: right;
  cursor: pointer;
}

#close2:hover,
#close2:focus {
  color: red;
}

.legend-text{
  font-size: 14px;
}

.legend {
  background: darkcyan;
  color: white;
  border-radius: 10px;
  box-shadow: 0 0 5px black;
  z-index: 2;
  position: absolute;
  padding: 0.5rem;
  bottom: 2.5%;
  right: 2.5%;
}

.legend h3 {
  margin-top: 0.5rem;
  text-align: center;
}

.legend img {
  padding: 0 0.5rem 0 0;
}

.legend * {
  vertical-align: middle;
}
