/* 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 {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #f9f9f9;
  color: #222;
}

/* NAVBAR */
.topnav {
  display: flex;
  justify-content: center;
  gap: 32px;
  padding: 24px 0;
  background-color: #ffffff;
  border-bottom: 1px solid #eaeaea;
  position: sticky;
  top: 0;
  z-index: 10;
}

.topnav a {
  position: relative;
  text-decoration: none;
  color: #333;
  font-size: 16px;
  padding: 4px 0;
  transition: color 0.2s ease;
}

.topnav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background-color: #0077cc;
  transition: width 0.3s ease;
}

.topnav a:hover {
  color: #0077cc;
}

.topnav a:hover::after {
  width: 100%;
}

.topnav a.active {
  font-weight: 600;
  color: #0077cc;
}

/* CONTENT SECTION */
.content {
  display: flex;
  align-items: flex-start;
  gap: 40px; /* space between image and text */
  max-width: 1000px;
  margin: 80px auto;
  padding: 0 40px; /* space from page sides */
}

.content figure {
  margin: 0;
  margin-left: 2000px; /* adjust to push image away from left edge */
  flex-shrink: 0; /* prevents image from shrinking */
}

.content figure img {
  width: 400px; /* or your preferred size */
  display: block;
}

.content figcaption {
  text-align: center;
  font-size: 0.9em;
  color: #666;
  margin-top: 8px;
}
.content p {
  margin: -200px 0 0 100px;
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}