* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: #1a1a2e;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  font-family: 'VT323', monospace;
  overflow: hidden;
}

#mac-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

#canvas {
  display: block;
}

#power-btn {
  position: absolute;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
}

#power-btn:hover {
  filter: brightness(1.2);
}

#page-footer {
  color: #888;
  font-size: 13px;
  padding: 10px;
  text-align: center;
  font-family: 'VT323', monospace;
}

#page-footer a {
  color: #bb86fc;
  text-decoration: none;
}
#page-footer a:hover {
  text-decoration: underline;
}