@import url('../globals/reset.css');

body{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.calculadora{
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;

  font-family: sans-serif;

  border: 1px solid #d3d3d3;
  border-radius: .5rem;
  width: 27rem;
  height: 35rem;
  background: #fff;

  filter: drop-shadow(0 2px 5px #d3d3d3);
}

.calculadora #display{
  width: 24rem;
  height: 3rem;
  margin: 0 auto;
  margin-top: 1rem;
  
  border: 1px solid #d3d3d3;
  box-shadow: inset 0 0 5px #d3d3d3;
  border-radius: .5rem;

  display: flex;
  align-items: center;
  padding: .5rem;

  font-size: 1.2rem;

  color: #441372;
}

.calculadora .botoes{
  width: 25rem;
  height: 30rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  place-items: center;
}

.calculadora .btn{
  display: flex;
  justify-content: center;
  align-items: center;
  
  cursor: pointer;

  color: #441372;
  font-size: 1.5rem;
  width: 5rem;
  height: 5rem;
  background-color: #f5f5f5;
  filter: drop-shadow(0 2px 3px #d3d3d3);
  padding: 1rem 1.5rem;
  border-radius: .5rem;
}