/* project03-01.css */
/* Maruos Balyos */
/* Hands-on Project 3-1 */

body {
  font-family: Arial, sans-serif;
  margin: 0;
  background-color: white;
  padding-top: 25px;
}

/* main box around everything */
.card {
  width: 750px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid gray;
}

/* blue header at the top */
.titleBar {
  background-color: #1e73b8;
  color: white;
  text-align: center;
  padding: 15px;
}

.titleBar h1 {
  margin: 0;
  font-size: 36px;
}

/* yellow section where the menu is */
.content {
  background-color: #f4c86a;
  padding: 20px;

  /* using flex to put menu and total next to each other */
  display: flex;
}

/* left side */
.menuPanel {
  width: 50%;
}

.menuPanel h2 {
  margin-bottom: 10px;
}

/* each menu item */
.item {
  display: block;
  margin: 8px 0;
  font-size: 17px;
}

/* space between checkbox and text */
.item input {
  margin-right: 8px;
}

/* right side total area */
.totalPanel {
  width: 50%;
  padding-top: 35px;
  font-size: 20px;
}

/* footer at bottom */
.pageFooter {
  width: 750px;
  margin: 15px auto;
  text-align: center;
}

.pageFooter a {
  text-decoration: none;
}