
body { 
margin: 0; padding: 0;
font-family: 'Roboto', sans-serif; 
}

.topnav {
  position: absolute;
  width:  650px;
  height:  100px;
  background-color: #FFFFFF;
  bottom:  0;
  margin-left:  25vw;
  margin-right:  20vw;
  margin-bottom:  20px;
  border-radius: 20px;
  overflow: hidden;
  opacity: 85%;

}


/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 10px 10px;
  text-decoration: none;
  font-size: 17px;
  background-color:  whitesmoke;
  margin-left:  10px;
  margin-top:  10px;
  border-radius: 20px;
  border-style: solid;
  border-color:  lightgrey;

}

.topnav a:first-child {

  margin-left:  30px;

}


/* Change the color of links on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}


.button {
  display: inline;
  width:  45px;
  height:  50px;
  background-color: white;
}

.sidebar {
  position: absolute;
  width:  90px;
  height: 100%;
  background-color: white;
  opacity: 85%;
}

.burger {
  padding-top:  10px;
  padding-left: 20px;
}

#map { 
position: absolute; top: 0; bottom: 0; width: 100%; 
}

#marker {
background-image: url('https://cdn.picpng.com/exclamation_mark/exclamation-mark-round-blue-77266.png');
background-size: cover;
width: 50px;
height: 50px;
border-radius: 50%;
cursor: pointer;
}

#marker:hover {
  width: 60px;
  height: 60px;
  animation-name: example;
  animation-duration: 0.1s;
}

@keyframes example {
  0%   {width: 50px; height: 50px;}
  100% {width: 60px; height: 60px;}
}
 
.mapboxgl-popup {
max-width: 200px;
}


#info {
display: table;
position: absolute;
margin: 0px auto;
bottom: 20px;
right:  0;
word-wrap: anywhere;
white-space: pre-wrap;
padding: 10px;
border: none;
border-radius: 3px;
font-size: 12px;
text-align: center;
color: #222;
background: #fff;
opacity: 0.5;
}