body {
  --primary-color: #493548;
  --secondary-color: #4b4e6d;
  --tertiary-color: #6a8d92;

  display: flex;
  flex-direction: column;

  color: white;
  font-family: sans-serif;
  height: 100vh;
  margin: 0;
}

footer {
  background-color: black;
  padding: 20px;
}

.hamburger {
  display: none;
}

header {
  background-color: var(--primary-color);
  margin: 0;
  padding: 2rem;
  text-align: center;
}

iframe {
  background-color: var(--tertiary-color);
  border: none;
  overflow: auto;
  flex-grow: 1;
}

main {
  display: flex;
  flex-grow: 1;
  overflow: hidden;
}

nav {
  background-color: var(--secondary-color);
  color: white;
  height: 100vh;
  overflow: auto;
  padding: 20px;
  width: 200px;
}

nav > a {
  color: white;
  display: block;
  font-size: 1.5rem;
  margin: 0.5rem 0;
  text-decoration: none;
}

.selected {
  color: yellow;
  font-weight: bold;
}

@media (max-width: 600px) {
  h1 {
    font-size: 1.5rem;
    margin-left: 1rem;
  }

  .hamburger {
    background-color: transparent;
    border: none;
    color: white;
    display: inline-block;
    font-size: 2rem;
    outline: none;
  }

  header {
    display: flex;
    padding: 1rem;
  }

  nav {
    position: absolute;
    transition: left 0.5s;
  }

  nav a {
    margin: 1rem 0; /* easier to tap */
  }
}
