/*
 * CSE 154 Lecture 5 (Layout Review)
 * --------------------------
 * This CSS defines the basic color/border styles for the flex demo screenshots.
 * layout.css is provided as a fresh page to focus practice with flex layout.
 */
 body {
   /* font styles */
   line-height: 50px; /* height of boxes to vertically center text */
   font-family: sans-serif;
   font-weight: bold;
   text-align: center;
 }

#container {
  height: 80px;
  background-color: #a4dc96;
}

div {
  border: 1px solid black;
}

#container > div {
  width: 50px;
  height: 50px;
  background-color: white;
}
