
#calculator_container{
  display: flex;
  flex-direction: column;
  background-color: rgba(1, 1, 22, 0.863);
  width: fit-content;
  padding: 20px;
  align-items: center;
  border-radius: 10px;
  margin: 100px auto;
}
#display{
  display: flex;
font-size: 36px;
align-items: center;
  width: 300px;
  overflow-x: scroll;
  overflow-y: hidden;
  height: 50px;
  background-color: white;
  margin-bottom: 10px;
  border-radius: 8px;
  padding: 8px;
}
.calculator_row{
  margin: 5px auto;
}
.calculator_row button{
  width: 60px;
  height: 60px;
  font-size: 20px;
border-radius: 8px;
border: none;
margin: 5px;
cursor: pointer;
}
.calculator_row button:hover{
  background-color: rgb(187, 183, 183);
}
@media (max-width: 480px) {
  #display {
    font-size: 22px;
    height: 45px;
  }

  .calculator_row button {
    height: 50px;
    font-size: 18px;
    min-width: 50px;
  }
  #calculator_container{
    width: 300px;
  }
}