body {
  background: #1e1e2f;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: Arial;
}

.calculator {
  background: #2c2c3e;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

#display {
  width: 100%;
  height: 60px;
  margin-bottom: 15px;
  text-align: right;
  font-size: 24px;
  padding: 10px;
  border-radius: 10px;
  border: none;
}

.buttons {
  display: grid;
  grid-template-columns: repeat(4, 70px);
  gap: 10px;
}

button {
  height: 60px;
  border: none;
  border-radius: 10px;
  font-size: 18px;
  cursor: pointer;
  background: #3e3e55;
  color: white;
  transition: 0.2s;
}

button:hover {
  background: #57577a;
}

.equal {
  background: #ff7a00;
}

.zero {
  grid-column: span 2;
}
