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

body {
  background-color: #1a1a1a;
  color: #ffffff;
  font-family: "Arial", sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-weight: 300;
  letter-spacing: 2px;
}

canvas {
  background-color: #333;
  border-radius: 10px;
  box-shadow: 0 0px 6px rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.status {
  margin-top: 2rem;
  font-size: 1.5rem;
  font-weight: 300;
}

.reset-btn {
  margin-top: 2rem;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  background-color: #333;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
}

.reset-btn:hover {
  background-color: #444;
}

.reset-btn:active {
  transform: scale(0.95);
}
