body {
  background: #0f172a;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: Arial;
}

.calculadora {
  background: #1e293b;
  padding: 20px;
  border-radius: 10px;
  width: 250px;
}

.display {
  width: 100%;
  height: 50px;
  margin-bottom: 10px;
  text-align: right;
  font-size: 20px;
  padding: 10px;
  border: none;
  border-radius: 5px;
}

.botoes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

button {
  padding: 15px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  background: #38bdf8;
  cursor: pointer;
}

button:hover {
  background: #0ea5e9;
}