body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #111;
  color: #fff;
}

header {
  background: #b30000;
  padding: 1em;
  text-align: center;
}

header h1 {
  margin: 0;
  font-size: 1.8em;
}

.tagline {
  font-style: italic;
  margin-top: 5px;
}

nav {
  margin-top: 1em;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
  font-weight: bold;
}

nav a:hover,
nav a.active {
  text-decoration: underline;
}

.hero {
  background: url('https://images.unsplash.com/photo-1503376780353-7e6692767b70') center/cover no-repeat;
  text-align: center;
  padding: 100px 20px;
}

.hero h2 {
  font-size: 2em;
  color: #fff;
  text-shadow: 1px 1px 4px #000;
}

.btn {
  background: #b30000;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}

.btn:hover {
  background: #e60000;
}

.content {
  padding: 40px 20px;
  max-width: 800px;
  margin: auto;
}

ul {
  list-style-type: square;
  padding-left: 20px;
}

footer {
  background: #000;
  text-align: center;
  padding: 1em;
  margin-top: 40px;
  font-size: 0.9em;
}