/* styles.css */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #333;
}

header {
  background: #4CAF50;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

header h1 {
  margin: 0;
  font-size: 2.5em;
}

section {
  padding: 50px 20px;
  text-align: center;
}

.gallery-images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.gallery-images img {
  width: 100%;
  max-width: 200px; /* 이미지 최대 너비를 200px로 설정 */
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.gallery-images img:hover {
  transform: scale(1.05);
}

footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 10px 0;
}
