* {
  margin: 0;
  padding: 0;
  font-family: "Helvetica Neue", sans-serif;
}

header img {
  width: 100%;
  border: none;
  max-height: 20vh;
}

body {
  background-color: #eeeeee;
}

nav {
  color: dimgray;
  width: 100%;
  display: inline-block;
  border: none;
  background-color: #333444;
}

nav ul {
  list-style-type: none;
  width: 100%;
}

nav ul li {
  display: inline;
  float: left;
}

nav ul li button {
  display: block;
  color: #f2f2f2;
  background-color: #333444;
  padding: 14px 16px;
  font-size: 17px;
  text-align: center;
  border: none;
}

nav ul li button.active {
  display: block;
  color: #f2f2f2;
  background-color: #8082a5;
  padding: 14px 16px;
  font-size: 17px;
  text-align: center;
  border: none;
}

nav ul li div:hover {
  background-color: #dddddd;
  color: black;
}

button,
select {
  padding: 5px;
}

#main-container {
  width: 100vw;
  display: flex;
  flex-direction: column;
}
#graph-container {
  position: fixed; /* Sit on top of the page content */
  display: none; /* Hidden by default */
  width: 100%; /* Full width (cover the whole page) */
  height: 100%; /* Full height (cover the whole page) */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  cursor: pointer;
  top: 50%;
  background-color: rgba(255, 255, 255 /* , 0.75 */);
  z-index: 2000;
  padding-top: 10px;
}

#yearselect {
  display: none;
}

.windy {
  display: none;
}
.tools-container {
  padding-left: 10px;
  padding-bottom: 10px;
}
#message-container {
  position: fixed;
  top: 50%;
  display: none;
  left: 50%;
  height: 50px;
  width: 150px;
  z-index: 2000;
  background-color: rgba(255, 255, 255 /* , 0.75 */);
  padding: 15px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 5px;
}

.map-container {
  width: 98vw;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
