@import url('https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200..800;1,200..800&display=swap');
*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body{
background-color:  hsl(204, 43%, 93%);
font-family: "Karla", sans-serif;
}
.container{
  max-width: 700px;
  margin: auto;
  padding: 0 2rem;
}
.container .content{
  align-items: center;
  margin-top: 40px;
  background-color: white;
  padding-top: 40px;
  padding-left: 15px;
  width: 100%;
  border-radius: 8px 8px 0 0;
}
.container .content h2{
  color: hsl(179, 62%, 43%);
  padding: 10px;
  font-weight: 700;
}
.container .content h3{
  color: hsl(71, 73%, 54%);
  padding: 15px;
}
.container .content p{
 color: hsl(218, 22%, 67%);
 line-height: 1.6;
padding-bottom: 35px;
}
.boxs{
 display: grid;
 grid-template-columns: repeat(2,1fr);
}
.box1{
  background-color: hsl(179, 62%, 43%);
  border-bottom-left-radius:8px ;
}
.x{
  padding: 40px;
  color: hsl(204, 43%, 93%);
}
.box1 h3{
  margin-bottom: 10px;
}
.box1 .pay{
font-size: 32px;
display: flex;
align-items: center;
}
.box1 .pay span{
  font-size: 14px;
  opacity: 0.5;
  margin-left: 10px;
}
.box1 .p2{
  padding-top: 10px;
padding-bottom: 15px;
}
.box1 button{
  width: 100%;
    margin-top: 30px;
    padding: 15px;
    border: none;
    background-color: hsl(71, 73%, 54%);
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.box2{
  background-color: hsl(179, 62%, 49%);
  border-bottom-right-radius:8px ;
}
.box2 h3{
  padding-bottom : 15px;
}
.box2 p{
line-height: 1.3;
}
@media(max-width:600px){
.boxs{
  grid-template-columns: 1fr;
}
.box1{
  border-radius: 0;
}
.box2{
  border-bottom-left-radius:8px ;
}
}
