body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #fafafa;
  color: #111;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 40px;
}

.logo {
  font-weight: 600;
  text-decoration: none;
  color: black;
}

.nav-links a {
  margin-left: 24px;
  text-decoration: none;
  color: #333;
}

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

.page {
  max-width: 800px;
  padding: 60px 40px;
  margin: auto;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.card {
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 12px;
  margin-bottom: 16px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.art-item {
  background: #eaeaea;
  height: 200px;
  border-radius: 12px;
}

.bag-container:hover .item-exp {
  transform: translate(-120px, -120px) scale(1);
}

.bag-container:hover .item-proj {
  transform: translate(100px, -140px) scale(1);
}

.bag-container:hover .item-art {
  transform: translate(-150px, -20px) scale(1);
}

.bag-container:hover .item-blog {
  transform: translate(140px, -10px) scale(1);
}

.bag-container:hover .item-contact {
  transform: translate(0, 140px) scale(1);
}


