body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: Red Hat Display, Arial;
    font-size: 15px;
    background-image: url("./pattern-background-desktop.svg");
    background-repeat: repeat-x;
    background-color: hsl(225, 100%, 94%);
    width: 100%;
    height: 100vh;
}

.ordersummary {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 450px;
    height: 700px;
    border-radius: 20px;
    background-color: white;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.15);
}
.ordersummary-pic {
    margin-bottom: 30px;
    border-radius: 20px 20px 0 0;
}
.ordersummary-title, .ordersummary-text {
    margin: 10px;
    margin-left: 45px;
    margin-right: 45px;
}
    .ordersummary-title {
        font-size: 28px;
        font-weight: 900;
        color: hsl(223, 47%, 23%);
    }
    .ordersummary-text {
        font-size: 16px;
        font-weight: 700;
        color: hsl(224, 23%, 55%);
        line-height: 26px;
    }
.ordersummary-plan {
    margin-top: 10px;
    display: grid;
    grid-template-columns: 95px 110px 1fr;
    align-items: center;
    width: 345px;
    height: 100px;
    border-radius: 10px;
    background-color: hsl(225, 100%, 98%);
}
    .ordersummary-plan-text {
        text-align: left;
        font-size: 17px;
    }
        .ordersummary-plan-text-up {
            font-weight: 900;
            color: hsl(223, 47%, 23%);
            margin-bottom: 6px;
        }
        .ordersummary-plan-text-down {
            font-weight: 700;
            color: hsl(224, 23%, 55%);
        }
    .ordersummary-plan-change {
        text-align: right;
        margin-right: 24px;
        font-size: 14px;
        font-weight: 800;
        text-decoration: underline;
        color: hsl(245, 81%, 45%);
    }
        .ordersummary-plan-change:hover {
            text-decoration: none;
            opacity: 0.7;
            cursor: pointer;
        }
.button-payment {
    width: 345px;
    height: 50px;
    margin-top: 30px;
    color: white;
    font-size: 15px;
    font-weight: 700;
    border-radius: 10px;
    border: 0;
    background-color: rgb(56, 41, 224);
    box-shadow: 5px 25px 20px rgba(56, 41, 224, 0.18);
}
    .button-payment:hover {
    opacity: 0.7;
    cursor: pointer;
    }

.cancel-order {
    margin-top: 30px;
    font-weight: 900;
    color: hsl(224, 23%, 55%);
}
    .cancel-order:hover {
    color: hsl(223, 47%, 23%);
    cursor: pointer;
    }
.autor {
    margin-top: 40px;
    font-weight: 500;
}
