@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100&family=Red+Hat+Display:wght@500;700;900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body{
    width: 100%;
    height: 100vh;
    background-image: url(images/pattern-background-desktop.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-color:hsl(225, 100%, 94%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Red Hat Display';
}

.container{
    background-color: rgb(255, 255, 255);
    max-width: 450px;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
}
.container .img img{
    padding-bottom: 40px;
}
.container h2{
    font-weight: 900;
    font-size: 22px;
    padding-bottom: 20px;
}
.container p{
    font-size: 16px;
    font-weight: 700;
    color: #98a4a4;
    margin-bottom: 25px;
    
}
.container .annual-plan{
    background-color: hsl(225, 100%, 98%);
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 20px 25px;
    border-radius: 12px;
    padding: 5px;
}
.annual-plan img{
    margin: 0;
}
.container .annual-plan #price{
    display: block;
    margin-top: 2px;
    margin-left: 5px;
}
.btn{
    display: inline-block;
    justify-content: center;
    align-items: center;
}
button{
    display: block;
    width: 400px;
    height: 40px;
    padding: 10px;
    margin: 10px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 18px;
    border: none;
    cursor: pointer;
}
.btn #proced-to-pay{
    color: white;
    background-color: hsl(245, 75%, 52%);
}
.btn #proced-to-pay:hover{
    color: white;
    background-color:hsl(245, 73%, 68%);;
    border: none;
}
#cancel{
    background-color: white;
    border: none;
    color: #797979;
}

@media only screen and (max-width: 425px) {
    body{
        background-image: url(images/pattern-background-mobile.svg);
        font-size: 14px;
    }
    .container{
        max-width: 87%;
    }
    .container h2{
        font-size: 23px;
    }
    button{
        text-align: center;
        width: 80vw;
        /* margin: 2px; */
    }
}