body {
    background-color: #EAE6CA;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    padding: 1vw;
    margin: 0;
}

/* Top bar container */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: #222;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Logo text */
.logo {
  color: white;
  margin: 0;
}

/* Nav list */
.topbar ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

/* Nav items */
.topbar li {
  margin-left: 20px;
}

/* Links */
.topbar a {
  color: white;
  text-decoration: none;
}

.topbar a:hover {
  text-decoration: underline;
}

/* Push content below fixed bar */
.content {
  padding-top: 80px;
  padding-left: 20px;
}

/* Prevent content hiding behind navbar */
h1 {
  margin-top: 80px;
}