/*Base Setup*/
*{
	background-color: #e6d1f2;
	font-family: Arial;
}

/* Menu */
#nav_menu {
  display: grid;
  grid-template-columns: 120px 120px;
  backgound-color: #2196F3; 
  text-align: center;
}

.menu_item {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
  width: 120px;
  text-decoration: none; 
  color: black;
}

.menu_item:hover {
  background-color: #ddd;
}

.menu_item a{
  text-decoration: none; 
  color: black;
}

/*Table Row*/
.book {
	text-align: left;
}

.book_title {
	text-align: left;
	boarder: 1px solid gray;
}
