body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: #000000;
  font-family: Arial, sans-serif;
}

.calculator {
  background: #141414;
  padding: 20px;
  border-radius: 10px;
  width: 260px;
}

.display {
  width: 100%;
  height: 50px;
  margin-bottom: 10px;
  text-align: right;
  font-size: 24px;
  padding: 10px;
  box-sizing: border-box;
  border: none;
  border-radius: 5px;
  color: white;
}

.buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

button {
  height: 50px;
  font-size: 18px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button.operator {
  background: #ff9500;
  color: white;
}

button.clear {
  background: #ff3b30;
  color: white;
}

button.equal {
  background: #34c759;
  color: white;
  grid-column: span 2;
}

button.number {
  background: #333;
  color: white;
}

button:hover {
  opacity: 0.8;
}
