body {
  background-color: oklch(0.96 0.01 250);
  margin: 0;
  font-family: system-ui, -apple-system, sans-serif;
  color: oklch(0.2 0 0);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  transition: background-color 0.3s ease;
}

h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: oklch(0.3 0 0);
}

button {
  padding: 12px 24px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  background-color: oklch(0.4 0.1 250);
  color: white;
  cursor: pointer;
  box-shadow: 0 4px 6px oklch(0 0 0 / 0.1);
  transition: all 0.2s ease;
}

button:hover {
  background-color: oklch(0.45 0.1 250);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px oklch(0 0 0 / 0.15);
}

button:active {
  transform: translateY(0);
}
