* {
    box-sizing: border-box;
    font-family: 'Roboto', 'Open Sans', sans-serif;
}

a {
    cursor: pointer;
}

body {
    background-color: #f6f9fc;
    text-rendering: optimizeLegibility;
    font-feature-settings: "pnum";
    font-variant-numeric: proportional-nums;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100vw;
    min-height: 100vh;
    margin: 0;
    padding: 40px 0 0;
}

.logo {
    width: 300px;
    margin-bottom: 42px;
}

.container {
    display: flex;
    width: 100%;
    max-width: 700px;
    height: 550px;
    justify-content: center;
    align-items: center;
}

h1 {
    margin: 0;
    padding: 0;
}

.order-details {
    width: 560px;
    border: 1px solid #717274;
    padding: 10px;
    border-radius: 7px;
    box-shadow: 0 0 83px -34px rgba(0,0,0,0.75);
}

.item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 0;
}

.total {
    font-size: 20px;
    color: #e44e4e;
    font-weight: bold;
}

.divider {
    width: 100%;
    height: 1px;
    background: #a79494;
}

@media all and (max-width: 560px) {

    .container {
        padding: 0 15px;
        height: 850px;
    }

    .order-details {
        width: 100%;
        padding: 15px;
        border: 0;
    }
}