body {
  margin: 0;
  background-color:hsl(30, 38%, 92%);
}
.container {
  display: flex;
  height: 100vh;
flex-direction: column;
  
}
.inner-container{
  background-color: hsl(0, 0%, 100%);
  border-radius: 15px;
  display: flex;
  flex-direction: row;
  margin: auto;
width: 700px;
height: 500px;
font-family: Montserrat;
}
.first{
  width:50%;
}
.first img{
  width:100%;
  height:100%; 
}
.second{
  width:50%;
  display: flex;
  flex-direction: column;
  padding: 20px;
}
.p-body{
  font-size: 14px;
  text-align: center;
  color:  hsl(228, 12%, 48%);
  font-family: Montserrat;
}
.p-head{
  color:  hsl(228, 12%, 48%);
  font-family: Montserrat;
  letter-spacing: 0.5em;
}
.figure{
  display: flex;
  align-items: center;
}
.figure1{
  font-size: 36px;
  font-weight: 700;
  color:hsl(158, 36%, 37%);
  font-family:Fraunces;
  
}
.figure2{
  margin-left: 10px;
  color:  hsl(212, 21%, 14%);
 
}
.button{
  background-color: hsl(158, 36%, 37%);
  color:hsl(0, 0%, 100%) ;
  border-radius: 5px;
  border: none;
  height: 50px;
  margin-top: 20px;
}
button img{
  margin-right: 10px;
}
.title{
  font-family:Fraunces;
  font-weight: 700;
  font-size: 48px
}

@media screen and (max-width: 414px){
  .container{
    /* display: block; */
    width: 100%;
    padding: 10px;
  }

  .inner-container{
    min-height: 800px;
    width: 90%;
    flex-direction: column;
    margin: 0;
  }
  .first{
  height: 40%; 
  width: 95%;

  }
  .second{
  width: 90%;
 padding: 20px;
 margin-top: 10px;
  }
  
  .first img{
    width:98%;
    height:100%;
    padding:10px;
}
.title{
  font-size: 28px;
}
body{
  width: 100%;
}

}