body {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  background-color: #f0f0f0;
}

.calculator {
  background-color: #333;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.display {
  width: 100%;
  height: 60px;
  font-size: 24px;
  text-align: right;
  background-color: #000;
  color: white;
  border: none;
  margin-bottom: 10px;
  padding: 0 10px;
  border-radius: 5px;
  box-sizing: border-box;
}

.buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

button {
  width: 60px;
  height: 60px;
  font-size: 18px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.number1 {
  background-color: #ffffff;
  color: rgb(0, 0, 0);
}

.number2,
.decimal {
  background-color: #00000054;
  color: white;
}

.operator {
  background-color: #e683ca;
  color: white;
}

.clear {
  background-color: #a6a6a6;
  color: black;
}

.equals {
  background-color: #e683ca;
  color: white;
}

button:hover {
  opacity: 0.8;
}

button:active {
  transform: scale(0.95);
}
