header {
  justify-content: center;
  flex-direction: row;
  align-items: center;
  z-index: 1;
}

h1 {
  color: black;
  width: 100%;
  margin: 1% 2% 1% 2%;
  padding: 0;
  text-align: left;
  font-family: monospace;
  z-index: 1;
}

body {
  margin: 0rem;
  min-height: 100vh;
}

#canvas {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  z-index: -1;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-button {
  background: none;
  width: 100%;
  padding: 0 20px;
  border: none;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 160px;
  box-shadow: 0px 8px 8px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 22px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
  background-color: #ddd;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}/*# sourceMappingURL=dotgrid.css.map */