body {
  margin: 0;

  background: #333;
  color: #e6dfd5;

  font-family: "Times New Roman", Times, serif;
  line-height: 1.75;
}

/* HEADER */

header {
  background: #2a2a2a;

  border-bottom: 1px solid #555;

  padding: 2rem 1.5rem 1rem;

  box-shadow: 0 1px 3px #000;
}

.site-title {
  text-align: center;
}

.site-title h1 {
  margin: 0;

  color: #c6974e;

  font-size: 3rem;
  font-weight: normal;
}

.tagline {
  margin-top: 0.4rem;

  color: #b8b0a6;

  font-size: 1rem;
}

/* NAVIGATION */

nav {
  margin-top: 1.5rem;

  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

nav a {
  padding: 0.5rem 1rem;

  background: #555;
  color: #e6dfd5;

  text-decoration: none;

  border: 1px solid #222;
  border-radius: 4px;

  box-shadow:
    inset 0 -8px 4px #232323,
    inset 0 8px 7px #555;

  transition:
    background 0.2s ease,
    color 0.2s ease;
}

nav a:hover,
nav a:focus {
  background: #c6974e;
  color: #111;

  border-color: #000;

  box-shadow:
    inset 2px 2px 2px #000;
}

/* MAIN CONTENT */

main {
  padding: 5rem 1.5rem;
}

.hero {
  max-width: 800px;

  margin: 0 auto;
  padding: 2rem;

  background: #2a2a2a;

  border: 1px solid #555;

  box-shadow: 1px 1px 3px #000;

  text-align: center;
}

.hero h2 {
  margin-top: 0;

  color: #c6974e;

  font-size: 2rem;
  font-weight: normal;
}

.hero p {
  color: #b8b0a6;

  font-size: 1.1rem;
}

/* BUTTON */

button {
  margin-top: 1.5rem;
  padding: 10px 22px;

  background: #555;
  color: #e6dfd5;

  border: 1px solid #222;
  border-radius: 4px;

  box-shadow:
    inset 0 -8px 4px #232323,
    inset 0 8px 7px #555;

  font-family: inherit;
  font-size: 16px;

  cursor: pointer;

  transition:
    background 0.2s ease,
    color 0.2s ease;
}

button:hover,
button:focus {
  background: #c6974e;
  color: #111;

  border-color: #000;

  box-shadow:
    inset 2px 2px 2px #000;
}

/* FOOTER */

footer {
  margin-top: 4rem;
  padding: 2rem 1rem;

  background: #2a2a2a;

  border-top: 1px solid #555;

  text-align: center;

  color: #b8b0a6;
}

.footer-links {
  margin-top: 0.5rem;
}

.footer-links a {
  color: #c6974e;

  text-decoration: none;
}

.footer-links a:hover {
  background: #c6974e;
  color: #111;
}
