/* 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: whitesmoke;
  font-family: "Lato", Noto Sans;
  color: #3d3d3d;
}
/*map layout and describing the leaflet popup*/
#map {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
}
.custom .leaflet-popup-tip,
.custom .leaflet-popup-content-wrapper {
  background: #000000;
  color: #ffffff;
}

/*Style the title panel (overlay box)*/
#title {
  position: fixed;
  top: 10px;
  left: 575px;
  font-size: 2em;
  font-family: "Lora", serif;
  letter-spacing: .04em;
  margin: 0;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid #777;
  border-radius: 6px;
  z-index: 800;
}
/*Style the description panel (overlay box)*/
#description {
  position: fixed;
  bottom: 110px;
  right: 10px;
  width: 280px;
  padding: 0 15px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid #777;
  border-radius: 3px;
  z-index: 800;
}
/*Make paragraph text inside the description readable */
#description p {
  font-size: 1.00rem;
  line-height: 1.5;
}
/*Style links inside the description (and hover effect)*/
#description a {
  color: #005daa;
  text-decoration: none;
}
/*description to resize the trappers turn image*/
#description img {
    width: 100%;
    height: 18%;
}
footer {
  position: fixed;
  bottom: 15px;
  left: 0;
  width: 100%;
  background-color: whitesmoke;
  color: black;
  background: rgba(255, 255, 255, 0.75);
  text-align: center;
  padding: 15px;
  z-index: 900;
}

#description a:hover {
  text-decoration: underline;
}