@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;
    font-family: "Red Hat Display", sans-serif;
    color: hsl(223, 47%, 23%);
}
body{
    background: url(images/pattern-background-mobile.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: hsl(229, 100%, 96%);

    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.order_div{
    background-color: hsl(225, 100%, 98%);
    width: 80vw;
    max-width: 450px;
    border-radius: 20px;
    text-align: center;
    

    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.048);
}
.order_div_hero{
    width: 100%;
    border-radius: 20px 20px 0px 0px;
}
.order_div_conteudo{
    padding: 25px;
}
.order_div_conteudo h1{
    font-weight: 900;
    padding-bottom: 10px;
}
.order_description{
    color: hsl(221, 27%, 58%);
    line-height: 1.5rem;
}
.order_plan{
    margin: 35px 10px;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;

    border-radius: 10px;
}
.order_plan_div{
    display: flex;
    gap: 20px;
    line-height: 1.5rem;
}

.order_button{
    background-color: hsl(245, 75%, 52%);
    width: 100%;
    padding: 20px;
    color: aliceblue;
    font-size: 1.3rem;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 6px 6px 5px rgba(0, 0, 0, 0.24);
}


