body {
  /*background-color: rgb(225, 230, 235);*/
  margin: 0;
  padding: 0;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

h1 {
  font-size: 25px;
  line-height: 0;
}

button {
  background-color: #087bd8;
  color: white;
  border: none;
  border-radius: 10px;
  padding: 10px 15px;
  cursor: pointer;
}

button:active {
  background-color: #61afef;
}

p {
  line-height: 1.5em;
}

.right-align {
  text-align: right;
  line-height: 1.5em;
  font-size: 0.9em;
}
a {
  color: #087bd8;
  text-decoration: none;
}

.options-menu {
  background-color: #ffffff;
  width: 100vw;
  max-width: 490px;
  margin: 0 auto;
  display: flex;
  border-radius: 7px;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
}

.title-box {
  margin-top: 20px;
  justify-content: space-between;
  gap: 20px;
  align-items: baseline;
  padding-top: 0;
  padding-bottom: 0;
}

.bg-img {
  background-image: url("images/background-forest.jpg");
  filter: blur(20px) brightness(0.8);
  position: fixed;
  top: -25vh;
  left: -25vw;
  z-index: -1;
  width: 150vw;
  height: 150vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.loader {
  width: 60px;
}

.map-container {
  margin: 20px auto;
  background-color: white;
  width: 510px;
  height: 510px;
  bottom: 10%;
  border: 2px solid white; /*#087bd8*/
  outline: 7px solid white;
  display: flex;
  align-items: center;
  border-radius: 1px;
  justify-content: center;
  max-width: 100vw;
  max-height: 100vw;
}

canvas {
  display: none;
  border-radius: 3px;
  width: 500px;
  height: 500px;
  max-width: 98vw;
  max-height: 98vw;
}
