body {
  margin: 0px;
  padding: 0px;
  left: 0px;
  top: 0px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  background: black;
  font-size: 1.5em;
}

a {
  color: #304FFE;
  text-decoration: none;
}

header {
  margin: 0px;
  color: white;
  text-align: center;
}

h1 {
  margin: 0px;
  font-size: 2em;
}

.header-text {
  max-width: 720px;
  margin: 15rem auto 5rem auto;
}

.header-text p {
  margin-bottom: 40px;
}

.button {
  background: white;
  border: solid white 2px;
  transition: all .4s;
  color: black;
  text-decoration: none;
  font-size: .8em;
  padding: 8px 30px;
}

.button:hover {
  background: black;
  color: white;
}

img {
  max-width: 100%;
}

.about {
  min-height: calc(100vh - 50px);
  padding: 25px;
}

.about-inner {
  width: calc(100% - 150px);
  min-height: calc(100% - 150px);
  background: white;
  padding: 50px;
  position: absolute;
}

.about-inner p {
  max-width: 1000px;
}

.shortcut {
  font-style: italic;
  padding-right: 20px;
}

nav {
  /* position: fixed; */
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  font-size: .8em;
  z-index: 5;
}

nav a {
  color: white;
  padding: 10px;
}

nav a:hover {
  text-decoration: underline;
}

.right {
  float: right;
}

@media (max-width: 960px) {
  body {
    font-size: 1em;
  }

  .about {
    min-height: 100vh;
    padding: 0px;
  }

  .about-inner {
    width: calc(100% - 30px);
    min-height: 100%;
    padding: 15px;
  }

  .header-text {
    margin: 10rem auto 5rem auto;
  }
}
