/* Basic Reset */
body, h1, h2, h3, p, ul {
  margin: 0;
  padding: 0;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f5f5f5;
  color: #333;
}
.container {
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
  padding: 20px;
}
header {
  background-color: #2e7d32; /* Main green colour */
  background: linear-gradient(45deg, #2e7d32, #66bb6a);
  color: #fff;
  padding: 20px;
  text-align: center;
  margin-bottom: 20px;
}
header h1 {
  font-size: 2em;
}
h2 {
  color: #2e7d32;
  margin: 20px 0 10px;
}
h3 {
  color: #2e7d32;
  margin: 15px 0 10px;
}
p {
  margin-bottom: 15px;
}
ul {
  margin-left: 20px;
  margin-bottom: 15px;
}
li {
  margin-bottom: 10px;
}
.section {
  margin-bottom: 40px;
}
/* Highlight in green */
.highlight-green {
  background-color: #ccffcc;
  font-weight: bold;
}
a {
  color: #2e7d32;
}
/* Snapshots Grid */
.snapshots-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 20px;
}
.snapshot {
  text-align: center;
  background-color: #fff;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
}
/*
.snapshot:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
} */

.snapshot img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 10px;
}
footer {
  text-align: center;
  font-size: 0.9em;
  padding: 20px;
  background-color: #eee;
  color: #555;
  margin-top: 40px;
}
@media (max-width: 600px) {
  header h1 {
    font-size: 1.5em;
  }
  .snapshots-container {
    grid-template-columns: repeat(2, 1fr);
  }
}