/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Background */
body {
  font-family: "Open Sans", sans-serif;
  background: #fffaf7 url("67c882a3515d26b3b76c900bc1f24e92.jpg") repeat;
  color: #3a2c2c;
  line-height: 1.6;
}

/* Banner */
.hero img {
  width: 100%;
  height: auto;
  max-height: 250px; /* keeps banner from being huge */
  object-fit: cover;
  display: block;
  border-bottom: 4px solid #c47a4a;
}

/* Nav */
.navbar {
  background: #8c5c36;
  padding: 10px;
  text-align: center;
}
.navbar ul {
  list-style: none;
}
.navbar li {
  display: inline-block;
  margin: 0 15px;
}
.navbar a {
  font-family: "Press Start 2P", monospace;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}
.navbar a:hover {
  color: #ffda91;
}

/* Content wrapper */
.container {
  max-width: 900px;
  margin: 30px auto;
  padding: 20px;
}

/* Section boxes */
section {
  background: #fff;
  padding: 20px;
  margin-bottom: 25px;
  border: 3px solid #e3b291;
  border-radius: 10px;
  box-shadow: 3px 3px 0px #c47a4a;
}

h1, h2 {
  font-family: "Press Start 2P", monospace;
  margin-bottom: 15px;
  color: #5a3a2e;
  text-align: center;
}

p, li {
  font-size: 15px;
}

/* Socials */
.socials ul {
  list-style: none;
  text-align: center;
}
.socials li {
  margin: 5px 0;
}
.socials a {
  color: #8c5c36;
  font-weight: bold;
  text-decoration: none;
}
.socials a:hover {
  color: #ff7c4a;
}

/* Footer */
footer {
  text-align: center;
  padding: 15px;
  background: #8c5c36;
  color: #fff;
  font-size: 12px;
  margin-top: 40px;
}
