.attribution { font-size: 11px; text-align: center;}
.attribution a { color: hsl(228, 45%, 44%); }
@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: 'Red Hat Display', sans-serif;
    background-color: hsl(225, 100%, 94%);
    background-image: url(images/pattern-background-desktop.svg);
    background-repeat: no-repeat;
    background-size: contain;
}
.container{
   background-color: white;
   max-width: 300px;
   text-align: center;
   border-radius: 10px;
   margin: 100px auto;
}
.hero{
    width: 100%;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}
.summary{
    margin-top: 20px;
}
.summary p{
    font-size: 12px;
    padding: 15px 30px;
}
.plans{
    background-color:  hsl(225, 100%, 98%);
    display: flex;
    align-items: center;
    margin-right: 20px;
    margin-left: 20px;
    padding: 15px;
    font-size: 12px;
    border-radius: 10px;
}
.plans img{
    width: 10%;
    margin-right: 10px;
}
.p-annual{
     margin-right: 80px;
}
h3{
    color: hsl(223, 47%, 23%);
    font-weight: 800;
}
h4{
    padding-bottom: 5px;
    color: hsl(223, 47%, 23%);
    font-weight: 700;
}
.btn{
    border: none;
    margin-top: 20px;
    margin-bottom: 20px;
}
.payment{
    background-color: hsl(245, 75%, 52%);
    color: white;
    font-size: 10px;
    font-weight: 800;
    border: none;
    width: 260px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 10px;
    box-shadow: 1px 5px 20px hsl(224, 23%, 55%);
}
.cancel{
     margin-top: 20px;
     background: none;
     border: none;
     padding-bottom: 30px;
     font-size: 10px;
     color: hsl(224, 23%, 55%);
     font-weight: 800;
}
.cancel:hover{
    color: hsl(223, 47%, 23%);
}
.plans a{
    font-weight: 700;
    color: hsl(245, 75%, 52%);
}
.plans a:hover{
    color:  hsl(224, 23%, 55%);
    text-decoration: none;
}
.payment:hover{
    background-color: hsl(224, 23%, 55%);
}

