/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: #7c6f64;
  color: black;
  font-family: Verdana;
}

/* Gruvbox-inspired navbar styles */
.navbar {
  background-color: #282828;
  padding: 0.5em 0;
  margin-bottom: 2em;
  box-shadow: 0 2px 6px rgba(0,0,0,0.07);
}
.navbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 2em;
}
.navbar li {
  display: inline;
}
.navbar a {
  color: #ebdbb2;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  padding: 0.3em 0.7em;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
.navbar a:hover, .navbar a:focus {
  background: #458588;
  color: #282828;
}

main {
  max-width: 700px;
  margin: 0 auto;
  padding: 1em;
  background: #fbf1c7;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(40,40,40,0.04);
}