* {
    margin: 0;
    padding: 0;
}

body{
    font-family:  Red hat display;
    display: grid;
    text-align: center;
    font-size: 14px;
    background-image: url(/order-summary-component-main/images/pattern-background-desktop.svg);
    margin: 80px;
}

.conteneur{
    display: grid;
    grid-template-columns: 320px;
    grid-template-rows: auto auto ;
    justify-content: center;
    margin: auto;
    background-color: rgb(255, 255, 255);
    border-radius: 15px 15px;
}

.order{
    margin: 0px 30px;
    border-radius: 15px;

}

.image{
    width: 100%;
}

h3{
    margin: 17px 0;
    font-weight: 800;
    font-size: 20px;
}

p{
    font-weight: 400;
    color: hsl(224, 23%, 55%);
    margin-bottom: 20px;
}

.plan{
    display: flex;
    justify-content: space-around ;
    align-items: center;
    background-color: hsl(225, 100%, 98%);
    margin: 30px 0px;

}

.plan2{
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon{
    width: 32px;
    height: 32px;
}

.btn{
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    gap: 10px;
}

#payment{
    height: 35px;
    border-radius: 5px;
    border: none;
    background-color: hsl(245, 75%, 52%);
    color: white;
    font-weight: 550;
    font-size: 12px;
    box-shadow: -1px 1px 8px hsl(245, 75%, 52%);
}

#payment:hover{
    background-color: hsl(245, 59%, 61%);
}

#cancel{
    height: 35px;
    border: none;
    background-color: white;
    color: hsl(224, 23%, 55%);
    font-weight: 550;
    font-size: 12px;
}

#cancel:hover{
    color: rgb(22, 22, 22);
}

.change:hover{
    color: hsl(245, 59%, 61%);
    text-decoration: none;
}
.attribution{
    margin-top: 30px;
}
