/* 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;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background-color: lightgrey;
  font-family: Arial, Helvetica, sans-serif;
  margin: 0 auto;
  padding: 0;
}

/* Style the top navigation bar */
.topnav {
  overflow: hidden;
  background-color: #333;
}

/* Style the topnav links */
.topnav p {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.topnav a {
  color: #f2f2f2;
}

/* Change color on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Style the content */
.content-container {
  display: table;
  background-color: lightgrey;
  padding: 10px;
  margin: 0 auto;
  width: 100%;
}

.content {
	display: table-cell;
	background-color: lightgrey;
	padding: 10px;
}

/* Style the footer */
.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #333;
  padding: 10px;
}

.footer p {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.footer a {
  color: #f2f2f2;
}

/* Change color on hover */
.footer a:hover {
  background-color: #ddd;
  color: black;
}
