body {
    background-color: #6d3223;
    color: #c6b8ab;
    font-family: "Times New Roman", Times, serif;
}
.site-header {
  max-width: 1200px;
  margin: 30px auto;
  padding: 0 20px;
  font-family: "Times New Roman", Times, serif;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 16px 24px;
  border-radius: 20px;

  background: #cfa195;
  border: 2px solid white;
}

.nav-title {
  font-family: 'Indie Flower', cursive; /* optional */
  font-size: 1.6em;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 24px;
  padding: 0;
  margin: 0;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-size: 1.1em;
  align-items: center;
}

.nav-links a:hover {
  text-decoration: underline;
}
.about-page {
  max-width: 700px;
  margin: 60px auto;
  padding: 0 20px;
  background: #6d3223;
  font-family: "Times New Roman", Times, serif;
}

.about-page h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
  text-align: center;
  font-family: "Times New Roman", Times, serif;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 30px;

  border: 2px solid white;
  border-radius: 20px;
  padding: 30px;

  max-width: 800px;
  margin: 40px auto;

  background: #6d3223;
}

.about-text {
  flex: 1;
}

.about-image {
  width: 200px;     /* control image size here */
  height: auto;
  border-radius: 12px; /* optional */
}
