*{
    padding: 0;
    margin: 0;
}
body{
    font-family: 'Red Hat Display', sans-serif;
  background: hsl(225, 100%, 94%);
  text-align: center;
}
a{
    text-decoration: none;
    color: white;
}

main{
    background-image: url(./images/pattern-background-desktop.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-attachment: fixed;
    width:100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.container{
    display: flex;
    flex-direction: column;
    max-width: 22rem;
    height: 34.3rem;
    background-color: hsl(225, 100%, 98%);
    border-radius: 15px   ;
}
 .music{
    max-width: 22rem;
    border-radius: 15px 15px 0px 0px  ;
 }
 .lower-section{
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-top: 2rem;
    padding: 1.5rem;
 }

 .info{
    margin:0.8rem;
    font-size: 0.92rem;
    color: hsl(224, 23%, 55%);
   font-weight: 450;
   line-height: 1.5;
 }
 .payment{
    display: flex;
    background:  hsl(222, 68%, 95%);
    align-items: center;
    height: 4.6rem;
    justify-content: space-between;
    padding-right: 1rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    
 }
 .annual{
    padding: 0.5rem;
    display: flex;
    align-items: center;
 }
 .plan{
    display: flex;
    flex-direction: column;
 }
.plan , .pay{
    margin:0 0.5rem;
    font-size: 0.85rem;
    font-weight: 800;
}
.pay{
    margin-top: 0.2rem;
    color: #7682A7;
}
.payment a{
    color:#3829E0;
    text-decoration: underline;
    font-size: 0.75rem;
    font-weight: 700;
    
}
.payment a:hover{
    color: #7682A7;
}
.proceed{
    border: none;
    height: 3rem;
    background-color:#3829E0 ;
    color: white;
    font-weight: 800;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0px 10px 12px #C7C3F6;

}
.proceed:hover{
 background-color: #7682A7;
}
.cancel{
    color: #7682A7;
    margin-top: 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    transition: color 0.25s ease-in-out .5s;
}
.cancel:hover{
    color:black ;
}