body {
  font-family: Arial, sans-serif;
  background: #f4f4f4;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.calculator {
  background: #222;
  padding: 20px;
  border-radius: 10px;
  width: 260px;
}
#display {
  width: 100%;
  height: 50px;
  font-size: 22px;
  text-align: right;
  padding: 10px;
  margin-bottom: 10px;
  border: none;
  border-radius: 5px;
}
.buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
button {
  padding: 15px;
  font-size: 18px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  background: #444;
  color: white;
  border: 1px solid red;
}
button:hover {
  background: #666;
}
.operator {
  background: orange;
}
.equal {
  background: green;
  border: 1px solid orange;
  grid-column: span 2;
}
.clear {
  background: red;
  grid-column: span 2;
}
.bracket {
  background: orange;
}
.digit {
  background: blue;
}
