/* Base Styles */

* {
  box-sizing: border-box;
}

body {
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
  color: #000;
  padding-top: 80px;
}

/** HEADER **/
#header-nav {
  background-color: #CCC;
  border-radius: 0px;
  border: 0px;
  border-bottom: 1px solid #003;
  box-shadow: 0 0 10px #003;
}

.navbar-brand {
  height: 98%;
  padding-top: auto;
  padding-bottom: auto;
}

.navbar-brand p { /* Name */
  color: #000;
  font-size: 2em;
  font-weight: bold;
  margin-top: 0px;
  margin-bottom: 0px;
  margin-left: 5px;
  vertical-align: middle; 
}
.navbar-brand p span { 
  vertical-align: middle;
}

#nav-list {
  margin-top: 5px;
}
#nav-list a {
  color: #000;
}
#nav-list a:hover {
  background: #FFF;
}
#nav-list a span {
  font-size: 1.8em;
}

.navbar-header button.navbar-toggle, .navbar-header .icon-bar {
  border: 1px solid #000;
}
.navbar-header button.navbar-toggle {
  margin-top: 40px;
}

/* END HEADER */

/* PAGE */
#main-content .container {
  margin: 10px auto 10px auto;
  padding: 10px;
}

p {
  margin: 0px;
  padding: 20px;
}

#chicken {
  background-color: #D59898;
  border-bottom: 1px solid #000;
  font-weight: bold;
  padding: 5px;
  text-align: center;
}

#beef {
  background-color: #C14543;
  border-bottom: 1px solid #000;
  color: #FFF;
  font-weight: bold;
  padding: 5px;
  text-align: center;
}

#sushi {
  background-color: #E5D198;
  border-bottom: 1px solid #000;
  font-weight: bold;
  padding: 5px;
  text-align: center;
}

.food-description {
  margin: 10px 0px 10px 0px;
}

section {
  background-color: #CCC;
  border: 1px solid black;
  color: #000;
  /* height: auto; */
  width: 100%;
  position: relative;
}

.text {
  height: 1000px; /* per instructions */
  overflow: hidden;
}

#top-menu {
  height: 30px;
  width: 100%;
  margin-bottom: 15px;
  position: relative;
  border: 2px solid #3F0C1F;
  overflow: hidden;
}
#top-menu:hover {
  box-shadow: 0 1px 5px 1px #cccccc;
}
#top-menu {
  background-position: center;
}
#top-menu span {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  text-align: center;
  font-size: 1.3em;
  text-transform: uppercase;
  background-color: #000;
  color: #fff;
  opacity: .8;
}
/* END PAGE */