* { margin: 3px;}

/* Light grey page background */
body {
  font-family: Arial, Helvetica, sans-serif;
  background: #dcdcdc;
  color: black;
}

/* Card background */
.page {
  max-width: 720px;
  margin: 20px auto;
  background: #eee;
  border: 1px solid #cfcfcf;
}

/* Top banner */
.header {
  background: orange;
  border: 3px solid white;
  padding: 26px 16px;
  text-align: center;
  color: white;
  border-radius: 6px;
  margin: 18px;
}

/* Top banner tagline*/
.tagline {
  margin: 16px 0 0;
}

/* Menu headings */
h2 {
  margin: 40px 18px 6px;
  color:#333;
  font-size: 1.25rem;
  font-weight: bold;
  border-bottom: 2px solid #cccccc;
  padding-bottom: 4px;  
}

/* Menu headers in tables */
.menu {
  width: calc(100% - 36px);
  margin: 20 18px 18px;
  border-collapse: collapse;
  background: white;
  border: 2px solid black;
}

.menu th, .menu td {
  padding: 10px;
  border: 1px solid #a9a9a9;
  vertical-align: top;
}

.menu thead th {
  color: white;
  text-align: left;
}

.menu .price-head,
.menu td.price {
  text-align: right;
}

/* Table header colors by section */
.menu-darkblue thead th { background: #0018f0; }   /* darker blue */
.menu-greenishblue thead th { background: #3a9ea0; }   /* greenish blue */
.menu-lightblue thead th { background: #00c7ff; }   /* light blue */

/* Price colors (darkish red) */
.price { color: #e64626; font-weight: bold; }

/* Footer copyright */
.site-footer {
  text-align: center;
  color: #666;
  font-size: 0.9rem;
  padding: 8px 0 20px;
}