/* 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." */
*{
  box-sizing: border-box;
}

body {
  background-color: grey;
  color: white;
  font-family: 'Courier New', monospace;
  font-size: 17px;

}

.grid-container {
  display: grid;
  grid-template-areas:
  'header'
  'menu'
}

.header {
  grid-area: header;
  background-color: grey;
  text-align: center;
  color: #ffffff;
}

.header > h1 {
  font-size: 30px;
}

.menu {
  grid-area: menu;
  text-align: center;
}

.menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.menu li {
  padding: 8px;
  margin-bottom: 7px;
  background-color: #33b5e5;
  color: #ffffff;
}

.menu li:hover {
  background-color: #0099cc;
}

.button {
  text-align: center;
  font: bold 22px Courier;
  text-decoration: none;
  background-color: #EEEEEE;
  color: #333333;
  padding: 4px 12px 4px 12px;
  border-top: 2px solid #CCCCCC;
  border-right: 2px solid #333333;
  border-bottom: 2px solid #333333;
  border-left: 2px solid #CCCCCC;
}

