body {
  background: #121212;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: Arial, sans-serif;
}

.calculator {
  background: #1e1e1e;
  padding: 20px;
  border-radius: 12px;
  width: 300px;
}

#display {
  width: 100%;
  height: 60px;
  font-size: 24px;
  margin-bottom: 15px;
  text-align: right;
  padding: 10px;
  border-radius: 8px;
  border: none;
}

.buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

button {
  height: 50px;
  font-size: 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

button:hover {
  opacity: 0.9;
}

.zero {
  grid-column: span 2;
}
