html, body {
    /* font-family: 'Open Sans', sans-serif; */
    font-weight: normal;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    color: rgb(208, 208, 208);
    overflow: hidden;
}
@media (max-width: 900px) {
    html {
        font-size: 14px;
    };
}
@media (max-width: 700px) {
    html {
        font-size: 13px;
    };
}
@media (max-width: 500px) {
    html {
        font-size: 12px;
    };
}

@media (max-width: 400px) {
    html {
        font-size: 10px;
    };
}
#header{
  position: absolute;
  width: 100%;
  height: 8rem;
  top:0rem;
  background-color: black;
}
#map{
  position: absolute;
  width: 100%;
  /* Firefox */
  height: -moz-calc(100% - 8rem);
  /* WebKit */
  height: -webkit-calc(100% - 8rem);
  /* Opera */
  height: -o-calc(100% - 8rem);
  /* Standard */
  height: calc(100% - 8rem);
  bottom:0;
  z-index: 10;
}
#mapControls{
  position: absolute;
  z-index: 50;
  width:auto;
  height: auto;
  top:9rem;
  left:1rem;
  background-color: rgb(0, 0, 0);
  color: white;
  border-radius: 5px;
  padding: 1rem;
}
#hoverBox{
  position: absolute;
  display: none;
  z-index: 100;
  max-width:20rem;
  background-color: #263238;
  padding: 0.5rem;
  color: white !important;
  border-radius: 5px;
  font-size: 1rem;
  color:white !important;
  font-size: 0.75rem;
  pointer-events: none;
}
.hoverTitle{
  font-size: 1.5rem;
}
.hoverSubTitle{
  font-size: 1rem;
}
