
* {
    margin: 0;
    padding: 0;
}

body {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-color: #fff;
    user-select: none;
}
.start:disabled {
    background-image: linear-gradient(135deg, #484848, #d9d9d9);
    box-shadow: 0 2px 6px #eeeeee;
    border-color: #d9d9d9;
    cursor: not-allowed;
}
body::before {
    position: absolute;
    content: ' ';
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    background-image: url("/plugins/food/static/img/bg.svg");
    background-position: center;
    background-size:cover;
}
.food{
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.start {
    margin-top: 20px;
    -webkit-user-select: none;
    user-select: none;
    display: inline-block;
    white-space: nowrap;
    background: #fff;
    text-align: center;
    box-sizing: border-box;
    transition: .1s;
    font-weight: 500;
    padding: 12px 20px;
    font-size: 14px;
    border-radius: 4px;
    width: 150px;
    height: 40px;
    vertical-align: middle;
    cursor: pointer;
    color: #FFFFFF;
    border: none;
    background-image: linear-gradient(135deg,#ec7e31,#f2b542);
    box-shadow: 0 2px 6px #f2b241;
    border-color: #f0a43d;
}
@media (max-width: 400px) {
    .start{
        width: 120px;
        height: auto;
        padding: 8px 14px !important;
    }
}
