body {
  margin: 0px;
  width: 100vw;
  min-height: 100vh;
  font-family: Typewriter;
}

canvas {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 0;
}
@media (max-device-width: 500px) {
  canvas {
    display: none;
  }
}

#log {
  position: absolute;
  top: 20vh;
  left: 0px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 3.5rem;
  z-index: 1;
}
@media (max-device-width: 500px) {
  #log {
    flex-direction: column;
    top: 10vh;
  }
}

h1 {
  font-size: 2rem;
}
@media (max-device-width: 500px) {
  h1 {
    font-size: 4rem;
  }
}

label {
  font-size: 1.2rem;
}
@media (max-device-width: 500px) {
  label {
    font-size: 3rem;
  }
}

input {
  margin-bottom: 0.8rem;
  border: none;
  border-bottom: 0.1rem solid black;
  padding: 0.8rem 1.5rem;
  background-color: rgba(250, 255, 189, 0.8);
}
@media (max-device-width: 500px) {
  input {
    width: 50%;
    font-size: 3rem;
  }
}

input[type=submit] {
  margin-top: 0.8rem;
}