* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #131366;
}

.container {
  width: 100vw;
  height: 100vh;
  display: grid;
  place-items: center;
}

.calculator {
  height: auto;
  width: auto;
  padding: 20px;
  background-color: whitesmoke;
  border-radius: 10px;
  box-shadow: 0 0 30px black;
}

#display {
  height: 150px;
  width: auto;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
   font-size: 40px;
   margin-bottom: 20px;
}

.buttons button {
  height: 60px;
  width: 60px;
  border: 0;
  margin: 5px;
  font-size: 20px;
  cursor: pointer;
  border-radius: 5px;
}

button#equal {
  height: 130px;
  background-color: #858585;
  color: black;
  font-weight: bolder;
}

.calculator button#clear {
  background-color: crimson;
  color: white;
}

.calculator button.btn-operator {
  background-color: black;
  color: white;
}

.calculator button.btn-number {
  background-color: black;
  color: white;
}
