body{
    width:100%;
    font-size:16px;
    background-color: #e5e5e5;
    margin:0;
    padding:0;
    font-family: 'Karla', sans-serif;
}
.container{

    width:70%;
    display:flex;
    justify-content: center;
    display:grid;
    grid-template-columns: repeat(2,minmax(min-content,1fr));
    grid-template-rows: minmax(min-content,1fr);
    grid-template-rows: fit-content(1fr);
    justify-content: center; 
    margin:60px auto;
}
.box1{
    height:200px;
    grid-column: 1/-1;
    align-items: center;
    padding-left:30px;
    background-color:white;
    border-top-left-radius:20px ;
    border-top-right-radius:20px ;
    position:relative;
}
.box2{
    height:300px;
    padding-left:30px;
    background-color:#0096c7;
    border-bottom-left-radius: 20px;
}
.box3{
    height:300px;
    padding-left:30px;
    text-align: justify;
    background-color:#48cae4;
    border-bottom-right-radius: 20px;
    display:flex;
    flex-direction: column;

}
ul{
    list-style-type: none;
    line-height: 20px;
    color: #6c757d;

}
h2{
    color:#0096c7;
}
.para1{
    color:hsl(71, 73%, 54%);
    font-weight:700;
}
.para2{
    color: hsl(218, 22%, 67%);
}
h3{
    color:white;
}
.month{
    color: hsl(218, 22%, 67%);
}
.access{
    color:white;
}
#dollar{
    font-size:2rem;
    color:white;
}
a{
    text-decoration: none;
    color:white;
    background-color:hsl(71, 73%, 54%);
    padding:5% 30%;
    border-radius: 10px;
    align-self:end;
    
   /* position:absolute;
    bottom:100px;*/
}
.link{
    margin-top:100px;
    text-align: center;
}

@media(max-width:1300px){
    
}

@media(max-width:1000px){
    .container{
        display:flex;
        flex-direction: column;
    }
    .container{
        display:flex;
        flex-direction: column;
    }
    .box2{
        border-radius: unset;
    }
    .box3{
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }
    .box1{
        border-top-left-radius:10px ;
        border-top-right-radius: 10px;
    }
}
@media(max-width:700px){
    body{
        font-size:0.8rem;
        width:100%;
    }
    .container{
        display:flex;
        flex-direction: column;
    }
    .box2{
        border-radius: unset;
    }
    .box3{
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }
    .box1{
        border-top-left-radius:10px ;
        border-top-right-radius: 10px;
    }

}
