@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
:root{
    --Pale-blue: hsl(225, 100%, 94%);
    --Bright-blue: hsl(245, 75%, 52%);
    --Very-pale-blue: hsl(225, 100%, 98%);
    --Desaturated-blue: hsl(224, 23%, 55%);
    --Dark-blue: hsl(223, 47%, 23%);

}
body{
    font-size: 16px;
    font-family: "Red Hat Display", sans-serif;
    font-weight: weight;
}
.order{
    background-color: var(--Pale-blue);
    height: 98vh;
    position: relative;
    background-image: url(images/pattern-background-desktop.svg);
    background-repeat: no-repeat;
}

.content{
    position: absolute;
    width: 325px;
    /* height: 600px; */
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.content > img{
    border-radius: 10px 10px 0 0;
    width: 100%;
}
.title{
    position: relative;
    background-color: white;
    margin-top: -5px;
    padding: 25px 30px 20px 30px;
    border-radius: 0 0 10px 10px;
}
h1{
    font-size: 18px;
    text-align: center;
}
p{
    text-align: center;
    color: var(--Desaturated-blue);
    font-size: 12px;
    padding: 10px 0 15px 0;
}
.background{
    align-items: center;
   border-radius: 10px;
    height: 60px;
    background-color:hsla(225, 100%, 94%, 0.4);
    display: grid;
    grid-template-columns: 50px 100px 50px;
}
.background > img{
    width: 35x;
    height: 35px; 
    margin-top: 5px;
    margin-left: 15px;
}
.price{
   margin-top: -5px;
   margin-left: 15px;
}
h4{
    font-size: 12px;
    font-weight: 900;
}
span{
    position: absolute;
    font-size: 12px;
    color:var(--Desaturated-blue) ;
    margin-top: 0;
}
.background > a{
    margin-left: 55px;
    font-size: 11px;
    color: var(--Bright-blue);
    font-weight: 700;
}
button{
    width: 260px;
    margin-top: 20px;
    padding: 12px 2px ;
    border-radius: 10px;
    background-color: var(--Bright-blue);
    color: white;
    font-weight: 700;
    box-shadow: 5px 5px 5px hsla(245, 75%, 52%,0.5);
    border: 1px solid var(--Bright-blue);
}
.link{
    text-align: center;
    margin-top: 20px;
    margin-bottom: 5px;
}
    
.link a{
    text-decoration: none;
    color:var(--Desaturated-blue) ;
    font-weight: 700;
    font-size: 12px; 
   
}
a:hover{
    text-decoration: none;
    color: var(--Desaturated-blue);

}
button:hover{
    background-color:hsla(245, 75%, 52%,0.6);
    border: 1px solid hsla(245, 75%, 52%,0.1) ;
    cursor: pointer;
    
}
@media(max-width:330px){
    .order{
        background-color: var(--Pale-blue);
        height: 98vh;
        position: relative;
        background-image: url(images/pattern-background-mobile.svg);
        background-repeat: no-repeat;
    }
    .content{
        position: absolute;
        width: 320px;
      
    }
    

}
