body {
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: #222;
  background: #fafafa;
  margin: 0;
}

.container {
  max-width: 700px;
  margin: 80px auto;
  padding: 0 20px;
}

.navbar {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #eee;
}

.links {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 15px 0;
}

.links a {
  position: relative;
  text-decoration: none;
  color: #666;
  display: inline-block;
  padding: 6px 10px;
  transition: color 0.2s ease;
}

.links a:hover {
  color: black;
}

h1 {
  font-size: 2rem;
  margin-bottom: 10px;
  text-align: center;
}

h2 {
  margin-top: 10px;
}

section {
  margin-bottom: 30px;
  text-align: center;
}

section a {
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
  color: #444;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid #ddd;
  border-radius: 8px;
  transition: all 0.2s ease;
}

section a:hover {
  color: black;
  border-color: #bbb;
  background: rgba(255, 255, 255, 0.8);
}

img {
  display: block;
  width: 50%;
  margin: 15px auto 0 auto;
  border-radius: 8px;
}

a {
  display: inline-block;
  margin-top: 10px;
  color: #444;
}

article {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 60px;
}

article a {
  color: #444;
  text-decoration: none;
  font-weight: 500;
}

article a:hover {
  color: black;
}

.image-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
  justify-content: center;
}

.image-grid img {
  width: 300px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}/*# sourceMappingURL=style.css.map */