body {
    background-image: url("/imgs/Pizza_bg.jpg");
}

#head {
    text-align: center;
    margin: 100px auto 10px auto;
}

h1 {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: #fff;
    margin: 0 auto;
    text-shadow: 0px 2px 10px #000;
}

h2 {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: #52adf2;
    margin: 0 auto;
    text-shadow: 0px 2px 10px #000;
}

h3 {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: #000;
    margin: 0;
}

h4 {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: #fff;
}

.container {
    width: 75%;
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center;
    margin:50px auto 0px auto;
}

form {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#size {
    background-color: rgba(82,242,151,.75);
    width: 40%;
    text-align: center;
    display: block;
    border: 2px solid white;
    border-radius: 10px;
    margin: 5px auto;
    padding: 10px;
    box-shadow: 0px 2px 30px #000;
}

#toppings {
    background-color: rgba(82,242,151,.75);
    width: 75%;
    text-align: center;
    display: block;
    border: 2px solid white;
    border-radius: 10px;
    margin: 5px auto;
    padding: 30px;
    box-shadow: 0px 2px 30px #000;
}

#orderbtn {
    cursor: pointer;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 1em;
    background-color: #52adf2;
    color: #fff;
    width: 200px;
    height: 40px;
    border: 2px solid white;
    border-radius: 10px;
    margin-top: 10px;
    box-shadow: 0px 2px 30px #000;
}

#orderbtn:hover {
    cursor: pointer;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 1.2em;
    background-color: #1a3549;
    color: #fff;
    width: 200px;
    height: 40px;
    border: 2px solid white;
    border-radius: 10px;
    margin-top: 10px;
}

#invoice {
    background-color: rgba(82,242,151,.95);
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    width: 35%;
    margin: 15% auto;
    display: flex;
    flex-direction: column;
    border: 2px solid white;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0px 2px 30px #000;
}

.order {
    color: #fff;
}

.closebtn {
    width: 15%;
    color: #fff;
    font-size: .85em;
    margin: 0;
}

.closebtn:hover,.closebtn:focus {
    color: #52adf2;
    cursor: pointer;
}

th {
    width: 100px;
    text-align: left;
}

.tbltotal {
    text-align: right;
}

.orderCancelBtns {
    display: flex;
    justify-content: center
}
.invoiceBtn {
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 1em;
    background-color: #52adf2;
    color: #fff;
    width: 200px;
    height: 40px;
    border: 2px solid white;
    border-radius: 10px;
    margin: 5px;
    box-shadow: 0px 2px 30px #000;
}

.invoiceBtn:hover {
    cursor: pointer;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    background-color: #1a3549;
    color: #fff;
    width: 200px;
    height: 40px;
    border: 2px solid white;
    border-radius: 10px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5)
}