body {
  margin: 0;
  background-color: black;
  color: white;
  font-family: 'Roboto', sans-serif;
}

header, nav, main, article {
  display: flex;
}

a {
  color: white;
  text-decoration: none;
}

#backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -10;
  background-color: #000;
  opacity: 0.50;
}

#bg-container {
  width: 100vw;
  height: 100vh;
  text-align: center;
  overflow: hidden;
  position: absolute;
  pointer-events: none;
  user-select: none;
}

#bg {
  width: inherit;
  height: inherit;
  filter: blur(10px);
  transform: scale(1.1);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1000;
  object-fit: cover;
  object-position: center;
}

#content-container {
  z-index: 1;
  display: flex;
  padding: 10px;
  flex-direction: column;
}

header {
  flex-grow: 1;
  margin-left: 10px;
  margin-right: 10px;
}

nav {
  flex-grow: 1;
  flex-direction: row;
}

nav > ul {
  list-style-type: none;
  font-size: 1rem;
  margin: 0;
  padding: 0;
}

nav > ul > li > a.button {
  border: 1px solid white;
  border-radius: 5px;;
  padding: 10px;
  align-items: center;
  display: flex;
}

nav > ul > li > a.button:hover {
  background-color: white;
  color: black;
}

.nav-brand {
  font-size: 2rem;
}

.nav-end {
  display: flex;
  margin-left: auto;
}

main {
  display: flex;
  flex-direction: column;
  justify-items: center;
  align-items: center;
  padding-top: 100px;
}

main > article {
  text-align: center;
  flex-direction: column;
  max-width: 800px;
}

article > h1 {
  margin: 0;
  font-size: 1.75rem;
}

 article > p {
   text-align: left;
 }