/* Page + full-screen map - Make the page tall enough for a full-screen map*/
html, body {
  height: 100%;
}
/* Basic styling for the whole page */
body {
  margin: 0;
  background-color: #fff1f1;
  font-family: "Inconsolata", sans-serif;
  color: #58517e;
}
/* Make the map fill the entire browser window */
#map {
  position: fixed;
  inset: 0; /* top:0; right:0; bottom:0; left:0 */
}
/*Style the title panel (overlay box)*/
    #title {
    position: fixed;
    top: 10px;
    left: 10px;
    font-size: 2em;
    font-family: "Inconsolata", serif;
    letter-spacing: .04em;
    margin: 0;
    padding: 10px 15px;
    background: rgba(240, 238, 238, 0.65);
    border: 1px solid #4c496d;
    border-radius: 6px;
    z-index: 800;
    }
/*Style the title panel (overlay box)*/
#title {
  position: fixed;
  top: 10px;
  left: 10px;
  font-size: 2em;
  font-family: "Inconsolata", serif;
  letter-spacing: .04em;
  margin: 0;
  padding: 10px 15px;
  background: rgba(240, 238, 238, 0.65);
  border: 1px solid #4c496d;
  border-radius: 6px;
  z-index: 800;
}
/*Make paragraph text inside the description readable */
#description p {
  font-size: 0.95rem;
  line-height: 1.5;
}
/*Style links inside the description (and hover effect)*/
#description a {
  color: #58517e;
  text-decoration: none;
  a:hover {
background-color: #fff1f1;
}
}

#description a:hover {
  text-decoration: underline;
}