html, body {
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 400;
  height: 100%;
  margin: 0;
  overflow: hidden;
  color: white;
}

body.about {
  color: black;
}
video {
  object-fit: cover;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
}
.show {
  display: block;
}
.header {
  position: relative;
  max-height: 100vh;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 16px 20px;
  box-sizing: border-box;
}
.header-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.header-bottom {
  display: flex;
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
  justify-content: flex-end;
}
.info {
  margin-top: 16px;
}
h1 {
  font-family: Lato, sans-serif;
  font-weight: 400;
  font-size: 32;
  margin: 0;
  text-align: left;
}
p {
  margin: 0;
  margin-bottom: 4px;
}
a, a:hover, a:active, a:visited {
  color: white;
  text-decoration: none;
}
body.about a, body.about a:hover, body.about a:active, body.about a:visited {
  color: black;
}
nav {
  font-size: 32px;
  text-align: right;
}
nav a {
  padding-left: 32px;
}

@media only screen and (max-width: 600px) {
  .header-top {
    flex-direction: column;
  }
  nav {
    text-align: left;
  }
  nav a {
    padding-left: 0;
    /* padding-right: 32px; */
    display: block;
  }
}