/* Main styling for the wrapper */
main .artWrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  margin: 0 auto;
}

/* Styling for the main heading and subheading */
main .artWrapper h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

main .artWrapper h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #555;
  max-width: 800px;
}

main .artWrapper .item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

main .artWrapper .item img {
  width: 80%;
  height: auto;
  max-width: 600px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}

/* Art gallery section */
main .artWrapper .artGallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  justify-items: center;
  width: 100%;
  max-width: 800px;
}

main .artWrapper .artGallery .artPiece {
  display: flex;
  justify-content: center;
}

main .artWrapper .artGallery .artPiece img {
  width: 40vh;
  height: 40vh;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

/* Image hover effect */
main .artWrapper .artGallery .artPiece img:hover {
  transform: scale(1.05);
}

.artWrapper div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
