/*
 * @package foodTruck
 * @author Kyrrah Nork <kyrrahnork@gmail.com>
 * @author Nicole Brown <giantspork@gmail.com>
 * @author Ron Hamasaki <shinobu.kinjo@gmail.com>
 * @version 0.1 2017/07/17
 * @link http://kyrrahnork.com/sm17
 * @license http://www.apache.org/licenses/LICENSE-2.0
 * @see index.php
 * @see cart.php 
 * @todo none
*/

*{
    margin:0;
    padding: 0;
}

html{
    width:100%;
}

body{
    margin-top: 0;
}

#wrapper{
    width:90%;
    background-color:#d1d1d1;
    margin:0 auto;
    overflow: auto;
}

.banner{
    text-align: center;
    font-size: 300%;
    font-family: 'Luckiest Guy', cursive;
    color: #800;
    text-shadow: 0 0 25px #ff0;
}

header{
    width: 100%;
    background-color: #000;
}

.dancinDog{
    width: 93%;
    margin: 0 auto;
    height: 150px;
    background-image: url(../images/dancinDog.gif);
}

.tagline{
    text-align: center;
    padding: 30px 0;
}

.menu_item{
    border: 2px solid black;
    margin-bottom: 2em;
    padding: 1em;
    max-width: 60%;
    background-color: #f1f1f1;
    border-radius: 10px;
    box-shadow: 4px 4px 5px #666;
    text-align: center;
}

section{
    width:50%;
    float: left;
    padding: 1em;
}

.submit{
    width: 63%;
    text-align: center;
}

input#submit{
    padding: 1em;
    border-radius: 10px;
    color: #fff;
    background-color: #800;
    font-size: 125%;
    margin-top: 40px;
}

label h3{
    color: #800;
    font-size: 200%;
    text-shadow: 0 4px 5px #666;
}

aside{
    position:fixed;
    margin-left: 50%;
    margin-top: 10px;
}

aside p{
    font-size: 150%;
}




