@import url('https://fonts.googleapis.com/css2?family=DynaPuff:wght@400..700&display=swap');

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "DynaPuff", system-ui;
  font-weight: 400;
}

body{
  background-color: rgb(237, 220, 252);
  max-width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.h1-container{
  display: flex;
  justify-content: center;
  align-items: center;
}

.h1{
  padding-top: 45px;
  font-weight: 500;
}

img{
  width: 100px;
  height: auto;
  background-color: transparent;
}

.container{
  background-color: lightcoral;
  max-width: 100%;
  width: 300px;
  height: 500px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  border-radius: 30px;
  padding: 10px;
  margin: 50px;
  box-shadow: 15px 15px 10px -1px rgb(0 0 0 / 0.1);
}

input{
  background-color: rgb(248, 202, 202);
  color: black;
  width: 270px;
  height: 100px;
  border:none;
  border-radius: 50px;
  margin-top: 30px;
  text-align: right;
  font-size: 50px;
  padding-right: 20px;
  box-shadow: 10px 6px 10px -1px rgb(0 0 0 / 0.1);
}

input:hover{
  background-color: rgb(252, 212, 212);
  transform: translate(2px, -2px);
}

input:focus{
  outline: none;
}

input::placeholder{
  color: black;
}

.btn-container{
  max-width:100%;
  width: 290px;
  height: 300px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(5, 1fr);
  justify-items: center;
  align-items: center;
  margin-bottom: 12px;
}

.btn-container .btn{
  background-color: rgb(253, 200, 200);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 17px;
  text-align: center;
  box-shadow: 10px 6px 10px -1px rgb(0 0 0 / 0.1);
}

.btn-container .btn:hover{
  background-color: rgb(224, 98, 98);
  transform: translate(2px, -2px);
}

.btn-container .btn-1{
  background-color: rgb(229, 202, 252);
  border: none;
  width: 95%;
  height: 50px;
  border-radius: 50px;
  font-size: 17px;
  text-align: center;
  grid-column: 3/5;
  box-shadow: 10px 6px 10px -1px rgb(0 0 0 / 0.1);
}

.btn-container .btn-1:hover{
  background-color: rgb(209, 81, 81);
  transform: translate(2px, -2px);
}