* {
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

/* Title */
.titleContainer {
        padding: 0.01em 16px;
        background-color: #125b39;
        color: white;
}

/* Navbar */
.active {
        color: #ddd;
}
.navbar ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: grey;
}
.navbar li {
        border-right: 1px solid #bbb;
        float: left;
}
.navbar li:last-child {
  border-right: none;
}
.navbar a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.navbar li a:hover {
  background-color: #125b39;
}

/* Style the content */
.content {
  background-color: lightgrey;
  padding: 10px;
}

/* Style the footer */
.footer {
  background-color: #125b39;
  padding: 10px;
  color: white;
}

.footer ul {
  list-style-type: none;
}

