body {
  padding: 0;
  margin: 0;

  display: flex;
  flex-direction: column;
  background-color: rgb(192, 192, 192);
}
h1 {
  align-self: center;
}
.calculator-body {
  width: 300px;
  height: fit-content;

  background-color: rgba(50, 48, 48, 0.74);
  border-radius: 10px;
  align-self: center;
  padding: 6px;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
}
.display {
  border: 1px solid black;
  background-color: white;
  margin-bottom: 10px;
  padding: 10px;
  height: 50px;
  border-radius: 1px;

  text-align: right;
  overflow: scroll;

  font-size: 30px;
}
.buttons-container {
  /* border: 1px solid green; */

  display: flex;
  flex-wrap: wrap;
  gap: 1px;
}
button {
  width: 70px;
  height: 60px;
  font-size: 20px;
  flex-grow: 1;

  border: 0;
  background: rgba(255, 255, 255, 0.3); /* Semi-transparent white */
  backdrop-filter: blur(10px);
  cursor: pointer;
  color: white;
}
.orange-button {
  background-color: orange;
  color: black;
  font-size: 0;

}
button:hover {
  background-color: rgba(255, 255, 255, 0.376);

  transition: 0.3s;
}
.zero-button {
  flex-grow: 20;
}
.plus-button {
  background-image: url(svgs/plus.svg);
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: center;
}
.minus-button {
  background-image: url(svgs/minus.svg);
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: center;
}
.multiply-button {
  background-image: url(svgs/x.svg);
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: center;
}
.divide-button {
  background-image: url(svgs/divide.svg);
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: center;
}
.percentage-button {
  background-image: url(svgs/percent.svg);
  font-size: 0;

  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: center;
}

.equal-button{
  background-image: url(svgs/equal.svg);

  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: center;
}
