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

.calculator {
  background: #232343;
  padding: 20px;
  border-radius: 10px;
  width: 260px;
}

#display {
  width: 100%;
  height: 50px;
  margin-bottom: 10px;
  font-size: 1.5rem;
  text-align: right;
  padding: 5px;
  border: none;
}

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

button {
  padding: 15px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  color: #1e1e1e;
}

.zero {
  grid-column: span 2;
}