/* ==========is root  to colors ===============  */
:root{
    /* &================primary==================== */
--Pale-blue: hsl(225, 100%, 94%);
--Bright-blue: hsl(245, 75%, 52%);
--blue-hover: hsl(245, 83%, 68%);
    /* &==============Neutral========================== */
--Very-pale-blue: hsl(225, 100%, 98%);
--Desaturated-blue: hsl(224, 23%, 55%);
--Dark-blue: hsl(223, 47%, 23%);
    /* &==============Font size========================== */
--Font-size-paragraph: 16px;
}
*{
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}
body{

    background:var(--Pale-blue);
    background-image: url(../images/pattern-background-desktop.svg);
    background-repeat: no-repeat;
    background-size: contain;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
   


} 
.container{
   background: white;
   width: 100%;
   height: 100%;
   max-width: 400px;
   max-height: 580px;
   font-family:"Red Hat Display" , "sans-serif";
   border-radius: 15px;
   -webkit-border-radius: 15px;
   -moz-border-radius: 15px;
   -ms-border-radius: 15px;
   -o-border-radius: 15px;
}
.order-A{
    text-align: center;
    
}
.image{
    width: 100%;
    height: 100%;
    max-width: 400px;
    max-height: 200px;
}
.image img{
    width: 100%;
    height: 100%;
    max-width: 400px;
    max-height: 200px;
    border-radius: 15px 15px 0 0;
    -webkit-border-radius: 15px 15px 0 0;
    -moz-border-radius: 15px 15px 0 0;
    -ms-border-radius: 15px 15px 0 0;
    -o-border-radius: 15px 15px 0 0;
}
.order-B h1{
    padding-top: 16px;
    padding-bottom: 1px;
    font-weight: 700;
    font-size: 24.5px;
    color: var(--Dark-blue);

}
.order-B p{
    padding: 20px;
    color: var(--Desaturated-blue);
}
div .annual-plan{
    margin-left: 40px;
    margin-right: 40px;
}
.annual-plan{
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--Very-pale-blue);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
.music img{
  margin-left: -60px;
  width: 44px;
  height: 44px;
}
.box1{
    transform: translateY(20px);
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
}
.box1 p{
    transform: translateY(-20px);
    
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
}
.box1 h3{
    font-size: 16px;
    color: var(--Dark-blue);
}
.Change{
    padding: 10px;
   font-size: 15px;
    font-weight: 700;
    color: var(--Bright-blue);
    transform: translateX(50px);
    -webkit-transform: translateX(50px);
    -moz-transform: translateX(50px);
    -ms-transform: translateX(50px);
    -o-transform: translateX(50px);
} 
/* ==========hovrer=============== */
.Change a:hover{
    color: var(--blue-hover); 
    text-decoration: none;
    cursor: pointer;
}  

/* ==========hovrer=============== */
.proceed button:hover{
    cursor: pointer;
    background-color: hsl(245, 83%, 68%);
    color: var(--Dark-blue);
}
.proceed{
    padding-top: 20px;
    margin: 10px;
    padding-left: 5px;
    
}
.proceed button{
   padding: 13px;
    width: 312px;
    border: 0;
    font-weight: 550;
    box-shadow: 0px 6px 25px -2px var(--Desaturated-blue);
    color: var(--Very-pale-blue);
    background: var(--Bright-blue);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
.cancel h2{
    font-size: 15px;
    padding-top:9px ;
    padding: 5px;
    color: var(--Desaturated-blue);

}
.cancel h2:hover{
    color: var(--Dark-blue);
    cursor: pointer;
}
.copyright {
    margin-top: 20px;
}
.copyright p {
    color: var( --Dark-blue);
}
.copyright a {
    color: var(--Bright-blue );
    text-decoration: none;
}
/* ========================================== */
/* !==================@media (max-width:768px)======================== */
/* ========================================== */

@media (max-width:768px) {
    body{
        background-image: url(../images/pattern-background-mobile.svg);
        background-repeat: no-repeat;
        background-size: contain;

    }
    .container{
        width: 100%;
        height: 100%;
        max-width: 350px;
        max-height: 540px;
        
    }
    div .annual-plan{
        margin-left: 25px;
        margin-right: 25px;
    }

    .music img{
        margin-left: -5px;
        width: 44px;
        height: 44px;
    }
    .Change{
        padding: 10px;
        font-size: 15px;
        font-weight: 700;
        color: var(--Bright-blue);
        transform: translateX(20px);
        -webkit-transform: translateX(20px);
        -moz-transform: translateX(20px);
        -ms-transform: translateX(20px);
        -o-transform: translateX(20px);
    } 
    .copyright p {
        color: var( --Dark-blue);
        text-align: center;
        padding: 10px;
    }

}
