/* Import Google font - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #222;
  margin: 0;
}
.container {
  position: relative;
  max-width: 300px;
  width: 100%;
  border-radius: 12px;
  padding: 10px 20px 20px;
  background: #000;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}
.display {
  width: 100%;
  outline: none;
  border: none;
  padding: 10px;
  margin-top: 10px;
  margin-bottom: 12px;
  text-align: right;
  font-size: 25px;
  color: #ffffff;
  background: #222;
  overflow: auto;
  border-radius: 6px;
}
.buttons {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(4, 1fr);
}
.buttons button {
  padding: 10px;
  border-radius: 6px;
  border: none;
  font-size: 20px;
  cursor: pointer;
  background-color: #222;
}
.buttons button:active {
  transform: scale(0.99);
}
.operator {
  color: orange;
}
.special {
  background: orange !important;
  color: white !important;
}
button {
  color: #ffffff;
}