/* styles.css */
body {
  margin: 0;
  font-family: sans-serif;
  background-color: #f8f8f8;
}

.landing-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.main-image img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  margin-bottom: 40px;
}

.image-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.image-list a {
  display: block;
  width: 100%;
}

.image-list img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
