/* Page + full-screen map - Make the page tall enough for a full-screen map*/
html, body {
  height: 100%;
}
/* Somewhat different styling for the body */
body {
  margin: 0;
  background-color: whitesmoke;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
/* Make the map fill the entire browser window */
#map {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
}

.custom .leaflet-popup-tip,
.custom .leaflet-popup-content-wrapper {
    background: #ec83ea;
    color: #ffffff;
}

/*Style the title panel (overlay box)*/
#title {
    position: fixed;
    margin-top: 0;
    top: 10px;
    left: 50px;
    font-size: 2em;
    font-family: "Montserrat", sans-serif;
    letter-spacing: .04em;
    padding: 10px 15px;
    background-color: #ffffffcc;
    border: 1px solid grey;
    border-radius: 6px;
    z-index: 800;
    text-align: center;
}

/*Style the description panel (overlay box)*/
#description {
    position: fixed;
    bottom: 20px;
    right: 10px;
	width: 280px;
    padding: 2px 15px;
    background-color: #ffffffcc;
    border: 1px solid grey;
    border-radius: 6px;
    z-index: 800;
}
/*Make paragraph text inside the description readable */
#description p {
  font-size: 0.95rem;
  line-height: 1.5;
}
#description img {
  display: block;
  margin: 10px auto;
}
