/* Reset some default browser styles */
body, h1, h2, h3, p, ul, li {
  margin: 0;
  padding: 0;
}

/* Add a background color and some padding around the entire page */
body {
  background-color: #f4f4f4;
  padding: 20px;
  font-family: Arial, sans-serif;
}

/* Style the header */
header {
  background-color: #50b3a2;
  color: white;
  text-align: center;
  padding: 10px;
}

/* Style the navigation menu */
nav ul {
  background-color: #333;
  overflow: hidden;
  color: white;
}

nav ul li {
  float: left;
  display: inline;
  padding: 14px 16px;
}

/* Style the main content */
main {
  margin: 15px;
  padding: 15px;
  background-color: white;
}

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