@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:wght@500;700;900&display=swap');
/* 
    'Red Hat Display', sans-serif;
    Weights: 500, 700, 900 
    - Mobile: 375px
    - Desktop: 1440px
*/

:root {
    /*Backhround*/
    --Pale-blue: hsl(225, 100%, 94%);
    /*Button*/
    --Bright-blue: hsl(245, 75%, 52%);
    /*price card bgcolor*/
    --Very-pale-blue: hsl(225, 100%, 98%);
    /*Desc txt*/
    --Desaturated-blue: hsl(224, 23%, 55%);
    /*Heading text*/
    --Dark-blue: hsl(223, 47%, 23%);
}
* {
    margin: 0 auto;
    padding: 0;
    font-size: 16px;
}
/* Main */
main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /*Background-Image*/
    background-image: url(./images/pattern-background-desktop.svg);
    background-color: var(--Pale-blue);
    background-repeat: repeat-x;
    background-position: top;
}
/* Card */
.card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 1rem;
    width: 30rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}
/* Hero Image */
.heroImg {
    width: 100%;
    height: 100%;
}
/* Content */
.content {
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
}
.heading {
    text-align: center;
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 900;
    font-size: 1.7rem;
    font-style: normal;
    color: var(--Dark-blue);
}
.desc {
    margin-top: 1.5rem;
    padding-left: 5rem;
    padding-right: 5rem;
    text-align: center;
    line-height: 1.5rem;
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 500;
    color: var(--Desaturated-blue);
}
/* Price Box */
.priceContainer {
    background-color: var(--Very-pale-blue);
    display: flex;
    flex-direction: row;
    border-radius: 0.5rem;
    margin-top: 3rem;
    margin-left: 3rem;
    margin-right: 3rem;
    padding: 1rem;
    vertical-align: middle;
}
.musicIcon {
    vertical-align: middle;
}
.txts {
    font-family: 'Red Hat Display', sans-serif;
    margin-left: -1rem;
}
.txtPlan {
    color: var(--Dark-blue);
    font-weight: 900;
    margin-bottom: 0.3rem;
}
.txtPrice {
    color: var(--Desaturated-blue);
    font-weight: 500;
}
.txtChange {
    color: var(--Bright-blue);
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 700;
    margin-top: 1rem;
    transition: .5s;
}
.txtChange:hover {
    color: #766cf1;
    text-decoration: none;
    transition: .5s;
}
/* Button Box */
.btns {
    display: flex;
    flex-direction: column;
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 700;
    margin-top: 2.5rem;
}
.btnPayment {
    background-color: var(--Bright-blue);
    color: var(--Very-pale-blue);
    margin-right: 3rem;
    margin-left: 3rem;
    padding: 1rem;
    text-align: center;
    text-decoration: none;
    border-radius: 0.5rem;
    box-shadow: 0px 15px 10px 0px #3829e030;
    transition: .5s;
}
.btnPayment:hover {
    border-radius: 5rem;
    transition: 1s;
}
.btnCancel {
    margin-top: 2rem;
    margin-bottom: 3rem;
    color: var(--Desaturated-blue);
    text-decoration: none;
    transition: .5s;
}
.btnCancel:hover {
    color: var(--Dark-blue);
    transition: .5s;
}
@media (max-width: 675px) {
    main {
        /*Background-Image*/
        background-image: url(./images/pattern-background-mobile.svg);
        background-color: var(--Pale-blue);
        background-repeat: repeat-x;
        background-position: top;
    }
}
