body{
    background-color: hsl(225, 100%, 94%);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    max-height: 100vh;
    overflow: hidden;
    font-family: 'Red Hat Display', sans-serif;
    font-size: 16px;
}
.container{
    display: flex;
    height: fit-content;
    justify-content: center;
    align-items: center;
    width: 375px;
    background-color: white;
    border-radius: 18px;
    flex-direction: column;
    max-width: 100%;
}
.img-banner{
    width: 375px;
    max-width:100%
}
.img-banner > img {
    width: 375px;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    margin-bottom: 0.5em;
    max-width: 100%
}
.txt{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    width: 100%;
    max-width:100%;
}
.txt > h1{
    font-weight: 900;
}
.txt > p {
    font-weight: 500;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
    color: grey;
    margin-top:0;
}
.price-sec{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    width: 80%;
    background-color: hsl(225, 100%, 98%);
    border-radius: 10px;
max-width:80%
}
.price-sec > span {
    display: flex;
    align-items: center;
    justify-content: center;
    
}
.price {
    margin : 3px;
    color: hsl(224, 23%, 55%) ;
    font-weight: 500;
}
.bl{
    width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
a{
    color: hsl(245, 75%, 52%);
}
a:hover  {
    opacity: 0.75; ;
}
.buttons{
    display: flex;
    width: 80%;
    flex-direction: column;
    align-items: center;
}
.pay-btn{
    background-color: hsl(245, 75%, 52%) ;
    height: 45px;
    width: 100%;
    font-family: 'Red Hat Display', sans-serif;
    color: white;
    font-size: 16px;
    border-radius: 10px;
    outline: none;
    border: none;
    padding: 6px;
    margin: 20px ;
    font-weight: 700;
    box-shadow: 0px 6px 11px 0px  hsl(224, 23%, 55%);
    cursor: pointer;
}
.pay-btn:hover{
    /* background-color: hsl(245, 75%, 52%); */
    opacity: 0.75;
}
.cancel-btn{
    font-family: 'Red Hat Display', sans-serif;
    font-size: 16px;
    max-width: fit-content;
    margin-bottom: 30px;
    background: none;
    outline: none;
    border: none;
    color: hsl(224, 23%, 55%) ;
    font-weight: 700;
    cursor: pointer;
}
.cancel-btn:hover{
    color: black;
}
