/*
selector {
  property: value; 
  }
*/

/* Use Comfortaa for everything */
body {
  background-color: #f4ebbe;
  font-family: 'Comfortaa', cursive;
  color: #333;
  margin: 0;
  padding: 0;
  text-align: center; /* center all page text except navbar */
}

/* Navbar container with flexbox */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #a7cecb;
  padding: 15px 30px 15px 0; /* NO left padding, so brand is flush left */
}

/* Brand text on the very left edge */
.brand {
  font-weight: 700;
  font-size: 1.8em;
  color: white;
  margin-left: 10px;  /* very small margin so not literally glued */
}

/* Navigation links on the right */
.nav-links a {
  color: white;
  font-weight: 700;
  font-size: 1.4em;
  margin-left: 25px;
  text-decoration: none;
}

.nav-links a:hover {
  background-color: #8ba6a9;
  padding: 5px 10px;
  border-radius: 4px;
}

/* Heading smaller with margin */
h1 {
  color: #75704e;
  font-size: 2em;
  margin: 30px 20px 20px 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.guiding-question {
  font-weight: 500;
  color: #75704e;
  font-size: 1.4em;
  margin-top: 10px;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-style: italic;
}

/* Paragraph styling */
p {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  font-size: 1.2em;
}

/* Image styling */
img {
  border: 4px solid #cacc90;
  border-radius: 8px;
  margin: 20px auto;
  display: block;
}

.image-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin: 40px auto;
  max-width: 900px;
  text-align: left;
}

.side-image {
  max-width: 320px;
}

.side-image img {
  width: 100%;
  height: auto;
  border: 4px solid #cacc90;
  border-radius: 8px;
  display: block;
  margin-bottom: 8px;
}

.side-image figcaption {
  font-style: italic;
  font-size: 0.9em;
  color: #75704e;
  margin-bottom: 8px;
}

.side-image p {
  font-size: 1.1em;
  line-height: 1.5;
  color: #333;
}