/* define css var "--lightgrey" as #eee */
:root {
    --background: #ececeb;
    --lightgrey: #aaa;
    --mediumgrey: #777;
    --darkgrey: #333;
    --highlight: #ff5cd2;
    --viewport-height: 750px;
    --body-height: 630px;
}


body {
    font-family: Helvetica, Arial, sans-serif;
    line-height: 1.2;
    height: var(--viewport-height);
    max-height: var(--viewport-height);
    margin: 0;
    display: flex;
    background-color: var(--background);
}

.app-wrapper {
    margin: auto;
    max-width: 400px;
    min-height: var(--viewport-height);
    display: flex;
    flex-direction: column;
    @media only screen and (min-width: 1000px) {
        max-width: 960px;
    }
    text-align: center;
}

.wrapper {
    height: var(--body-height);
    max-height: var(--body-height);
    margin: auto;
}

.shop-link {
    text-decoration: none;
    color: black;
    padding: 10px;
    width: 80px;
}

.logo {
    height: 36px;
}
