* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.fundo {
  display: flex;
  background-image: linear-gradient(45deg, black, #a700b1);
  height: 100vh;
  color: white;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  justify-content: center;
  align-content: center;
}

.calculadora {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 15px;
  padding: 15px;
}

.botao {
  background-color: rgb(31, 31, 31);
  width: 50px;
  height: 50px;
  margin: 3px;
  font-size: 25px;
  cursor: pointer;
  border: none;
  color: white;
}

.botao:hover {
  background-color: #a700b1;
}

#resultado {
  background-color: white;
  width: 207px;
  height: 30px;
  margin: 5px;
  font-size: 25px;
  color: black;
  text-align: right;
  padding: 5px;
}/*# sourceMappingURL=style.css.map */