/* CSS stylesheet for Project 1 site */
body {
  background-image: url("backgrounds-dirt-road.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  color: #818181;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin: 10px;
  line-height: 1.6;
}

header h1 {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 6px;
  color: #10be00;
}

nav {
  text-align: center;
  margin: 12px 0;
}

nav a {
  margin: 0 12px;
  text-decoration: none;
  color: #000000;
  font-weight: 600;
}

nav a:hover {
  text-decoration: underline;
}

main {
  max-width: 900px;
  margin: 0 auto;
  padding: 12px;
  background: #000000;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

h2, h3 {
  text-align: center;
  margin-top: 10px;
  color: #00ff15;
}

figure {
  margin: 12px 0;
  text-align: center;
}

figcaption {
  font-size: 0.95em;
  color: #555;
  margin-top: 6px;
}

img.responsive {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

footer {
  text-align: center;
  margin-top: 12px;
  font-size: 0.9em;
  color: #000000;
}

/* small utility */
.contact {
  text-align: center;
  margin: 10px 0 18px 0;
}

.email-link {
  color: #00ff15;
  font-weight: 600;
  text-decoration: none;
}

/* makes 3 images appear in a centered row */
.image-row {
  display: flex;
  justify-content: center;
  gap: 20px;   /* spacing between images */
  align-items: center;
  margin: 20px 0;
}

.image-row img {
  width: 250px;   /* adjust as needed */
  height: auto;
  border-radius: 8px;
}