
body {
  font-family: Arial, sans-serif;
  margin: 40px;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

h1, h2 {
  color: #2c3e50;
}

div.captures {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

div.captures img {
  max-width: 300px;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

div.captures img:hover {
  transform: scale(1.05);
}
