* {
  box-sizing: border-box;
  font-family: 'Play', sans-serif;
  
}
:root{
  font-size: 62.5%;

}
body{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  /* margin: 10%; */
 
  background-image: url('/img/bkg.png');
  background-repeat: no-repeat;
  background-size: cover;
}
.calculadora{
  display: flex;
  /* height: 345px; */
  /* border: 1px solid black; */
  width: 50%;
  /* margin: 15% 30% 0 35%; */
  padding: 1%;
  background: rgba(213, 210, 210, 50%);
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  align-content: center;
  margin: 15% 5% 0;
}
h1{
  text-align: center;
  font-size: 2rem;
}

.numeros input{
  width: 40%;
  height: 40px;
  margin: 10px;
  border: none;
  border-radius: 2px;
  font-size: 2rem;
}
.botones button{
  padding: 8px;
  margin: 1% 2% 3% 45%;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  height: 25px;
  text-align: center;
}
p{
  /* margin: 1% 2% 3% 45%; */ 
    border: 1px solid grey;
    border-radius: 5px;
    font-size: 2rem;
    height: 40px;
    text-align: center;
    /* width: 40%; */
    background: rgba(213, 210, 210, 50%);
}

@media screen and (min-width: 1024px) {
  /* Your CSS styles for laptop screens */
  .calculadora{
    margin: 20% 5% 0;
    width: 40%;
  }
}