html, body {
  margin: 0;
  padding: 0;
  font-family: 'Prompt', sans-serif;
  background: #f3f3f3;
  color: #222;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  z-index: 1000;
}

.logo svg {
  height: 56px;
  display: block;
}

.nav-links a {
  margin-left: 24px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.nav-links a:hover {
  color: #0077cc;
}

/* PAGE OFFSET */
.page {
  padding-top: 72px;
}
