section#order {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    min-height: 100vh;
    width: 100vw;
    z-index: 8;
}

#bg {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 7;
}

section#order>div {
    max-width: 400px;
    background-color: #f1e4db;
    padding: 30px;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.5);
    position: relative;

}

#order p, #order label {
    font-family: sans-serif;
}

#order label {
    margin-top: 5px;
    margin-bottom: 10px;
}

#order article {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#order input {
    min-width: 90%;
    flex-grow: 1;
    padding: 10px;
    border: none;
    box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-size: 1em;
    margin-bottom: 5px;
}

#order h1 {
    font-size: 3em;
}

#order #send {
    background-color: #000;
    color: #fff;
    border-radius: 10px;
    cursor: pointer;
}

#close {
    font-family: sans-serif;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 2em;
}