body {
  margin: 0;
  overflow: hidden;
  font-family: 'Press Start 2P', cursive;
  background-color: #050016;
  color: #fff;
  text-align: center;
}

#stars {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
}

header {
  position: relative;
  z-index: 2;
  padding: 20px;
}

h1 {
  font-size: 18px;
  color: #ff9bff;
  text-shadow: 0 0 10px #ffccff;
}

nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #9cf6ff;
  text-shadow: 0 0 5px #00ffff;
}

nav a:hover {
  color: #fff;
  text-shadow: 0 0 10px #fffd8f;
}

#modeToggle {
  background: #111;
  color: #fff;
  border: 1px solid #ffccff;
  font-family: inherit;
  font-size: 10px;
  padding: 6px;
  cursor: pointer;
  border-radius: 4px;
}

main {
  position: relative;
  z-index: 2;
  margin: 40px auto;
  width: 80%;
  background: rgba(0, 0, 0, 0.5);
  border: 2px dashed #ffccff;
  padding: 20px;
  border-radius: 8px;
}

.blinkies {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 15px;
}

.blinkies img {
  height: 25px;
  image-rendering: pixelated
}

audio {
  margin-top: 15px;
}

body.light {
  background-color: #fdf5ff;
  color: #222;
}

body.light h1 {
  color: #ff70d0;
  text-shadow: none;
}

body.light nav a {
  color: #5b5bff;
  text-shadow: none;
}

body.light main {
  background: rgba(255, 255, 255, 0.8);
  border-color: #ffc7ff;
}

