/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: #000000;
  color: #EEEEEE;
  font-family: Garamond, Georgia, serif;
}

h1 {
  font-weight: bold; 
  color: maroon;
}

.container {
  display: grid;
  grid-template-areas:
    "header header header"
    "menu content sidebar"
    "footer footer footer";
  grid-template-columns: 1fr 3fr 1fr;
  gap: 3px;
  /*background-color: #333;*/
  padding: 5px;
}
.container div {
  background-color: #000000;
  padding: 10px;
}
.container div.header {
  grid-area: header;
  text-align: center;
  background-image: url("/img/background_tile.jpg");
  background-repeat: repeat-x;
}
.container div.menu {
  grid-area: menu;
}
.container div.menu ul {
  list-style-type: none;
  padding: 0;
  border: 2px solid maroon;
}
.container div.menu ul li {
  border-bottom: 1px solid maroon;
}
.container div.menu ul li:last-child {
  border-bottom: none; 
}
.container div.menu ul li a {
 display: block;
 height: 30px;
 padding: 5px 5px;
 text-decoration: none;
 text-align: center;
 color: #EEEEEE;
 font-weight: bold;
}
.container div.menu ul li a:hover {
 background-color: #333;
 color: maroon;
 font-weight: bolder;
}
.container div.content {
  grid-area: content;
}
.container div.sidebar {
  grid-area: sidebar;
}
.container div.footer {
  grid-area: footer;
  text-align: center;  
  background-image: url("/img/background_tile_flip.jpg");
  background-position: left bottom;
  background-repeat: repeat-x;
}