@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');
html, body {
  margin: 0;
  height: 100%;
  overflow: hidden;
  text-align: center;
  font-family: 'Press Start 2P', cursive;
  user-select: none;
  background: #000;
}
#displayCanvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  display: block;
}

#loginScreen {
  position: fixed;
  inset: 0;
  z-index: 10;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Times New Roman", Times, serif;
  font-size: 20px;
  color: #000000;
}
#loginBox {
  border-color: #000000;
}
#loginLogo {
  max-width: 340px;
  max-height: 200px;
  display: block;
  margin: 0 auto 8px;
}
#loginHeading {
  font-weight: bold;
  font-size: 24px;
  margin: 4px 0;
}
#loginForm label {
  font-size: 20px;
}
#loginForm input[type="text"],
#loginForm input[type="password"] {
  font-family: "Times New Roman", Times, serif;
  font-size: 20px;
}
#loginError {
  color: #cc0000;
  font-size: 16px;
  margin: 10px 0;
}
#loginButton {
  font-family: "Times New Roman", Times, serif;
  font-size: 20px;
  padding: 4px 18px;
  margin-top: 6px;
}
