/* Reset styles */
* {
  font-family: Arial, sans-serif;
  font-size: 16px;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Global styles */
/*
body {
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
}
*/

a {
  color: #337ab7;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
/* ======================================================================== */
/* Styles for Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #f5f5f5;
  padding: 10px;
}

nav {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
}

nav ul {
  display: flex;
  list-style: none; /* remove bullet point */
}

nav li {
  margin-right: 30px;
}

nav li:last-child {
  margin-right: 0;
}

nav a {
  font-weight: bold;
}
/* ======================================================================== */
/* Styles for Main part */
.main_content {
  margin-top: 35px;
  margin-bottom: 35px;
}
/* ======================================================================== */
/* Styles for Footer */
footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #f5f5f5;
  padding: 10px;
  text-align: center;
}
