body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: red;
  font-family: Arial, sans-serif;
}

.calculator {
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  width: 270px;
  background-color: green;
}

.display {
  width: 100%;
  height: 50px;
  margin-left: -10px;
  margin-bottom: 15px;
  font-size: 24px;
  padding: 10px;
  border: none;
  border-radius: 8px;
  background: #f9f9f9;
}

.buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

button {
  padding: 20px;
  font-size: 18px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  background: #ddd;
  transition: 0.2s;
}

button:hover {
  background: #bbb;
}

.equal {
  grid-column: span 2;
  background: #4CAF50;
  color: white;
}

.clear {
  background: #f44336;
  color: white;
}
