:root{
    --blue: hsl(225, 100%, 94%);
    --bright-blue: hsl(245, 75%, 52%);
    --very-pale-blue: hsl(225, 100%, 98%);
    --desaturated-blue: hsl(224, 23%, 55%);
    --dark-blue: hsl(223, 47%, 23%);
}

html{
    font-size: 62.5%;
}


body {
    background-image: url(../images/pattern-background-desktop.svg);
    background-color: var(--blue);
    height: 100vh;
    display: flex;
    background-size: contain;
    justify-content: center;
    background-repeat: no-repeat;
    align-content: center;
}

h1{
    font-family:  'Red Hat Display', sans-serif;
    font-weight: 900;
    font-size: 2rem;
    text-align: center;
    
}

.font--one{
    font-family:  'Red Hat Display', sans-serif;
    font-weight: 500;
   
    text-align: center;
}

p{
    color: var(--desaturated-blue);
    font-size: 1.6rem;
}

.block{
    background: var(--blue);
    align-self: center;
}

.container{
    width: 320px;
    height: 510px;
    background: #fff;
    border-radius: 20px;
}

.content{
    margin: 1.5rem;
}

.hero{
    width: 100%;
    height: 30%;
    border-radius: 20px 20px 0 0;
}

.price{
    display: grid;
    grid-template-columns: 0.7fr 1fr 1fr;
    border-radius: 13px;
    background: var(--very-pale-blue);
    padding: 2rem;
    margin-bottom: 30px;
    font-size: 1.4rem;
}

.link{
    color: var(--bright-blue);
    margin-top: 1rem;
    margin-left: 0;
    font-weight: 700;
}


.price--annual{
    margin-top: 0.8rem;
    color: var(--desaturated-blue);
}

.bold{
    font-weight: 900;
}


button{
    width: 100%;
    height: 4rem;
    border: 0;
    border-radius: 13px;
    font-size: 1.6rem;
    margin-top: 1rem;
    font-weight: 700;
    cursor: pointer;
}

.btn--primary{
    background: var(--bright-blue);
    color: #fff;
}

.btn--secondary{
    background: #fff;
    color: var(--desaturated-blue);
}

@media screen and (min-width: 1440px) {
    .container{
        width: 400px;
        height: 600px;
    }
}