:root {
  --bg-color: #1e1e2f;
  --calc-bg: #2d2d44;
  --button-bg: #444466;
  --button-hover: #5c5c88;
  --text-color: #ffffff;
  --display-bg: #f4f4f4;
  --display-text: #000000;
  --radius: 12px;
  --gap: 10px;
}

body {
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--bg-color);
  font-family: Arial, sans-serif;
}

.calculator {
  background: var(--calc-bg);
  padding: 20px;
  border-radius: 20px;
}

#display {
  width: 270px;
  height: 60px;
  font-size: 28px;
  text-align: right;
  margin-bottom: 15px;
  padding: 10px;
  border: none;
  border-radius: var(--radius);
  background: var(--display-bg);
  color: var(--display-text);
}

.buttons {
  display: grid;
  grid-template-columns: repeat(4, 65px);
  gap: var(--gap);
}

button {
  height: 60px;
  border: none;
  border-radius: var(--radius);
  font-size: 22px;
  cursor: pointer;
  background: var(--button-bg);
  color: var(--text-color);
  transition: 0.2s;
}

button:hover {
  background: var(--button-hover);
}

.wide {
    background-color: #00FA9A;
    grid-column: span 2;
}

.clear {
    color: #DC143C;
}