/*
 * CSE 154 Lecture 5 (Layout)
 * --------------------------
 * CSS for Exercise 4 (builds off of Exerises 1-3)
 */
#container {
  border-radius: 5px; /* shorthand for all sides */
  overflow: auto; /* Added in Exercise 4 */
  padding-bottom: 10px;
  padding-top: 10px;
  text-align: center;
}

#-container div {
  float: left; /* Added in Exercise 4 */
  /* could also do display: inline; */
}
