@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:wght@500;700;900&display=swap');

body{
    font-size: 16px;
    width: 100%;
    height: 100vh;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    background-image: url(pattern-background-desktop.svg);
    background-color: hsl(225, 100%, 94%);
    background-repeat: no-repeat;
    background-size: contain;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Red Hat Display', sans-serif;
}  

h2{
    color: hsl(223, 47%, 23%);
    font-weight: 900;
}

.bottom{
    display: flex;
    flex-direction: column;
    padding-top: 1em;
    padding-right: 2em;
    padding-left: 2em;
    text-align: center;
}
    
.container{
    border-radius: 1em;
    background-color: white;
    width: 25em;
}

.girl{
    border-top-right-radius: 1em;
    border-top-left-radius: 1em;
    width: 100%;
}

.pa{
    color: hsl(224, 23%, 55%);
    margin-top: 0;
}

.plan{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-color:hsl(225, 100%, 98%);
    margin-right: 2em;
    margin-left: 2em;
    border-radius: 1em;
    padding: 1em 1em 1em 1em;
}

.ch{
    padding-left: 4em;
}

.button{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 1em 1em 2em 1em;
    margin-right: 2em;
    margin-left: 2em;
    
}

.btn-1{
    background-color: hsl(245, 75%, 52%);
    color: white;
    font-weight: 900;
    border-radius: 1em;
    border: none;
    padding: 1em;
    margin: 1em 2em 1em 2em;
    width: 100%;
    align-items: center;
    box-shadow: 0 10px 20px -2px hsla(245, 75%, 52%, 0.451);
}

.btn-2{
    border: none;
    background-color: white;
    color: hsl(224, 23%, 55%);
    font-weight: 900;
    margin-top: 2em;
    margin-bottom: 1.5em;
}

a{
    font-weight: 700;
}

.lol{
    display: flex;
    flex-direction: column;
}

.annual{
    margin: 0;
    color: hsl(223, 47%, 23%);
    font-weight: 900;
}

.price{
    margin: 0;
    color:hsl(224, 23%, 55%) ;
}

@media (max-width:768px){
    body{
        background: url(pattern-background-mobile.svg);
        background-color: hsl(225, 100%, 94%);
        background-repeat: no-repeat;
        background-size: contain;
    }

    .container{
        width: 55%;
        height: 75vh;
    }
}