html {
  height: 100%;
}

body {
  height: 100%;
  color: black;
  background-color: #C3CCBC;
  text-align: left;
  margin: 0;
}

h1 {
  text-align: center;
}

h2 {
  text-align: center;
}

/* Fixed sidenav, full height */
.sidenav {
  height: 100%;
  width: 400px;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #111;
  overflow-x: hidden;
  padding-top: 20px;
}

/* Style the sidenav links and the dropdown button */
.sidenav a, .dropdown-btn {
  padding: 6px 8px 6px 16px;
  text-decoration: none;
  font-size: 18px;
  font-family: sans-serif;
  color: #818181;
  display: block;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  outline: none;
}

/* On mouse-over */
.sidenav a:hover, .dropdown-btn:hover {
  color: #f1f1f1;
}

/* Main content */
.main {
  height: 100%;
  margin-left: 400px; /* Same as the width of the sidenav */
  padding: 0px 10px;
}

/* Add an active class to the active link */
a.active {
  background-color: green;
  color: white;
}

/* Add an active class to the active dropdown button */
.active {
  background-color: green;
  color: white;
}

/* Dropdown container (hidden by default). */
.dropdown-container {
  display: none;
  font-size: 14px;
  background-color: #262626;
  padding-left: 8px;
}
