* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
    "Lucida Sans", Arial, sans-serif;
}

nav {
  display: flex;
  flex-direction: column;
  width: fit-content;
  padding: 4px;
  margin: 2px;
  background-color: #70809090;
  border: solid black 2px;
}

nav #generator {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

nav form {
  display: flex;
  flex-direction: column;
}

canvas {
  border: black 4px solid;
  image-rendering: pixelated;
}

#about {
  position: absolute;
  top: 0;
  right: 0;
  margin: 8px 15%;
  width: 50%;
  padding: 4px;
  border-radius: 2px;
  background-color: #2a2a3b23;
}

code {
  font-size: 1.2rem;
  font-family: monospace;
  background-color: #2a2a3b23;
}

@media only screen and (max-width: 40em) {
  code {
    font-size: 0.8rem;
  }

  #about {
    font-size: 0.7rem;
    margin: 2px;
    width: 40%;
  }
}
