*{
   margin:0;
   padding:0;
   box-sizing:border-box;
   font-family: 'Red Hat Display', sans-serif;
}
body{
    background: hsl(225, 100%, 94%);
    height:120vh;
    display:flex;
    align-items: center;
    justify-content: center;
    background-image: url(images/pattern-background-desktop.svg);
    background-repeat: no-repeat;
    background-size: contain;
}
.container{
    background:white;
    width: 380px;
    border-radius:20px;
    overflow:hidden;
    box-shadow: 0 15px 20px hsl(224, 23%, 55%);
    text-align: center;
}
.hero{
    width:100%;
}
.content{
    padding: 30px;
}
.content h2{
    font-weight:900;
    margin-bottom: 15px;
}
.content p{
    color:hsl(224, 23%, 55%);
    font-size:15px;
    line-height: 1.5;
    margin-bottom: 25px;
}
.plan-box{
    background:hsl(225, 100%, 98%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    border-radius:10px;
    margin-bottom: 25px;
}
.plan-left{
    display:flex;
    align-items: center;
    gap:15px;
}
.plan-left h4{
    font-size: 14px;
    font-weight: 700;
}
.plan-left span{
    font-size: 13px;
    color:hsl(245, 75%, 52%);
}
.plan-box a{
    font-size:13px;
    font-weight:700;
    color:hsl(245, 75%, 52%)
}
.plan-box a:hover{
    text-decoration:none;
}
.payment-btn{
    width:100%;
    background: hsl(245, 75%, 52%);
    color:white;
    border:none;
    padding:15px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 15px;
    box-shadow: 0 10px 20px rgba(56,41,224,0.4);
}
    .payment-btn:hover{
        opacity:0.8;
    }
    .cancel-btn{
        background:none;
        border:none;
        color:hsl(224, 23%, 55%);
        font-weight:700;
        cursor:pointer;
    }
    .cancel-btn:hover{
        color:black
    }
    .attribution{
        font-size: 15px;
        text-align: center;
        margin-top: 15px;
    } 
    .attribution a{
        color:hsl(228, 45%, 44%); 
    }