body, html {
  margin: 0;
  padding: 0;
}

body {
  background: rgba(0,0,0,.01);
  font-family: Montserrat;
  color: #424346;
}

h1 {
  font-size: 36px;
}

@media(max-width: 768px) {
  h1 {
    font-size: 24px;
  }
}

table, tr, th, td {
  border: none;
  border-collapse: collapse;
}

th {
  font-weight: normal;
  width: 80px;
  vertical-align: top;
  text-align: left;
}

img {
  height: 300px;
  width: auto;
  margin: 0 auto;
  display: block;
}

main {
  margin: 50px auto;
  max-width: 768px;
  border: 1px solid #eee;
  box-sizing: border-box;
  background: white;
  padding: 40px;
  border-radius: 3px;
}

a {
  text-decoration: none;
  color: teal;
}

a:hover {
  border-bottom: 1px solid teal;
}

a.active {
  border-bottom: 1px solid teal;
}

nav {
  margin-bottom: 40px;
}

nav ul {
  text-align: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  display: inline-block;
}

nav ul li::after {
  content: "|";
  display: inline-block;
  margin: 0 5px;
}

nav ul li:last-of-type::after {
  display: none;
}
