body {
  margin: 0;
  font-family: Roboto, open sans, sans-serif;
  font-size: 16px;
  color: rgb(40, 40, 40)
}

#infobutton {
  position: absolute;
  z-index: 1000;
  margin: 20px 20px 0 0;
  right: 0;
  top: 0;
}

#infobutton>img {
  cursor: pointer;
  width: 40px;
}

#infobox {
  z-index: 1100;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, .65);
}

.content {
  opacity: 1;
  max-width: 500px;
  text-align: center;
  top: 5%;
  position: fixed;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 30px 20px 30px;
  left: 0;
  right: 0;
  background-color: #fff;
  border: 1px solid transparent;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .3);
  border-radius: .5rem;
}

@media screen and (max-width:500px) {
  .content {
    height: 90%;
    overflow-y: scroll;
    overflow-x: auto;
  }
}

.content p {
  text-align: left;
  margin: 0 0 15 0;
}

.content h1 {
  margin: 0 0 20 0;
}

.content h2 {
  margin: 0 0 20 0;
}

.content .close {
  cursor: pointer;
  width: 15px;
  height: 15px;
  position: absolute;
  right: 1rem;
  top: 1rem;
}

.content .close img {
  width: 100%;
}

.leaflet-popup .leaflet-popup-content img {
  width: 640px;
}

@media screen and (max-width:500px) {
  .leaflet-popup .leaflet-popup-content img {
    width: 300px;
  }
}