@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 {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #353535;
}
.container {
  position: relative;
  max-width: 300px;
  width: 100%;
  border-radius: 12px;
  padding: 10px 20px 20px;
  background: #353535;
  box-shadow: 0  5px 10px rgba(0, 0, 0, 0.315);
}
.p1{
    color: #877cc8 ;
    text-decoration: none;
}

.display {
  height: 80px;
  width: 100%;
  outline: none;
  border: none;
  text-align: right;
  margin-bottom: 10px;
  font-size: 40px;
  color: #353535;
  pointer-events: none;
  background-color:#bebebe ;
  border-radius: 10px;
  padding: 10px;
}
.buttons {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(4, 1fr);
}
.buttons button {
  padding: 10px;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  border: none;
  font-size: 20px;
  cursor: pointer;
  background-color: #666666;
  color: #cecece;
  

}
.buttons button:active {
  transform: scale(0.99);
}
.math {
  color: #d8d8d8;
  background-color:#8f86c7 !important ;
}