* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: poppins;
}
html,
body {
  height: 100%;
  width: 100%;
}

.contener {
  height: 100%;
  width: 100%;
  background-color: #7e56f4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.calculatorTop {
  width: 100%;
  height: 50%;
  /* border: 2px solid red; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}
.calculatorTop .title
{
  width: 50%;
  height: 30%;
 /* border: 2px solid red; */
 display: flex;
 align-items: end;
 justify-content: center;
}
.calculatorTop .title h1
{
  font-family: "Prata", serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: white;
  text-shadow: .5px 1px 2px whitesmoke;
}
.calculatorTop .boxinput {
  width: 35%;
  height: 30%;
  background-color: white;

  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  box-shadow: 6px 6px 6px rgb(0, 0, 0);
}

.calculatorTop .boxinput input {
  width: 200px;
  height: 35px;
  font-size: 18px;
  background-color: #efeefe;
  outline: none;
  text-transform: uppercase;
  border: none;
  padding: 20px;
  border-radius: 5px;
}
.calculatorTop .boxinput button {
  width: 125px;
  height: 35px;
  font-size: 18px;
  background-color: #7e56f4;
  border: none;
  border-radius: 2px;
  color: white;
}

.calculatorTop .boxinput button:hover
{
    background-color: white;
    border: 2px solid #7e56f4;
    transition-duration: .6s;
    transition-timing-function: ease-in-out;
    color: #7e56f4;
    border-radius: 5px;
}



.calculatorBottom {
  width: 100%;
  height: 50%;
  /* border: 2px solid red; */
  display: flex;
  justify-content: center;
  align-items: start;
}

.calculatorBottom .boxdate {
  width: 50%;
  height: 75%;
  /* border: 2px solid red; */
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.calculatorBottom .boxdate .cards {
  width: 120px;
  height: 120px;
  background-color: white;
  border-radius: 5px;
  box-shadow: 6px 6px 6px rgb(0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
}
.calculatorBottom .boxdate .cards h2 {
  font-size: 35px;
}
.calculatorBottom .boxdate .cards p {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 400;
}
@media screen and (max-width: 1100px)
{

    .calculatorTop .boxinput {
        display: flex;
        flex-direction: column;
        width: 300px;
        height: 145px;
      }
}



@media screen and (max-width: 600px) {
  .calculatorTop .title
  {
    width: 50%;
    height: 30%;
  }
  .calculatorTop .title h1
  {
    font-size: 14px;
  }
  .calculatorTop .boxinput {
    display: flex;
    flex-direction: column;
    width: 250px;
    height: 145px;
  }
  .calculatorTop .boxinput input {
    width: 150px;
    height: 15px;
    font-size: 14px;
  }
  .calculatorBottom .boxdate
  {
    width: 95%;
    justify-content: space-between;
  }
}
