/* General body styling */
body {
  background-color: #e1d4c1;
  margin: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: 'Libre Baskerville', serif;
  color: #5a6a77;
}

/* Header styling */
header {
  background-color: #cbbca8; /* darker shade */
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Navigation links */
header a {
  color: #5a6a77;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

header a:hover {
  color: #2f3b46;
}

/* Main section */
main {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Headline text */
h1 {
  font-size: 3rem;
  font-weight: 700;
}
