*{
    margin:0;
    padding:0;
    font-family: 'Red Hat Display', sans-serif;
    box-sizing: border-box;
}

body{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-image: url('./images/pattern-background-desktop.svg');
    background-repeat: no-repeat;
    background-size:contain;
    background-color: hsl(225,100%,94%);
    min-height:calc(100vh - 0.1px);
}
.container .upper-part img{
    width:100%;
    border-radius: 1em 1em 0 0;
    margin-bottom:-1em;
}

.container{
    width:400px;
    height:auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.upper-part{
    width:100%;
}

.lower-part{
    background-color: white;
    border-radius: 0 0 1em 1em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lower-part h2{
    margin-top: 2rem;
    margin-bottom: 2rem;
    font-weight: 900;
}

.lower-part p{
    margin-bottom:2rem;
    padding:0 2rem 0 2rem;
    text-align: center;
    color:hsl(224,23%,55%);
    font-size: 16px;
}

.price{
    width:80%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: hsl(225,100%,98%);
    border-radius:1em;
    padding:1em;
    margin-bottom:2rem;
}
.price .logo{
    margin-right:-4rem;
    margin-left: 0.5rem;
}

.price .plan{
    display: flex;
    flex-direction: column;
}

.price a{
    font-weight: 700;
    margin-right: 0.5rem;
}

.buttons{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom:2rem;
}

.buttons .btn{
    width:100%;
    padding:1rem 6rem 1rem 6rem;
    border:none;
    border-radius:12px;
    outline: none;
    background-color: hsl(245,75%,52%);
    color:white;
    margin-bottom: 2rem;
    box-shadow: 0px 10px 20px rgba(56,41,24,0.3);
}

.buttons .sec-btn{
    background-color: white;
    outline:none;
    border:none;
    color:hsl(224,23%,55%);
    font-weight: 900;
}


/* active states */
.buttons .btn:hover{
    cursor: pointer;
    background-color: rgb(85, 72, 225);
}

.price a:hover{
    text-decoration: none;
    color:rgb(85,72,225);

}

.buttons .sec-btn:hover{
    color:black;
    cursor: pointer;
}
