body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  color: white;
}

.hero {
  background-image: url('../images/mainpage-background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 20px;
  box-sizing: border-box;
}

.content {
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Same as before, with more indent levels added */
.indent-0 { margin-left: 0px; }
.indent-1 { margin-left: 40px; }
.indent-2 { margin-left: 80px; }
.indent-3 { margin-left: 120px; }
.indent-4 { margin-left: 160px; }
.indent-5 { margin-left: 200px; }
.indent-8 { margin-left: 320px; }


ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul li {
  margin-bottom: 5px;
}

.attribution {
  position: absolute;
  bottom: 10px;
  right: 15px;
  font-size: 0.7em;
  color: rgba(255, 255, 255, 0.7);
}

a {
  color: #ddd;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
