/* BASIC css start */
/*»ó´Ü ¹öÆ° Ä¿½ºÅÒ*/
.button-container { max-width: 1200px; margin: 0 auto; padding: 20px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.info-button { background-color: #a7a7a7; color: #fff; padding: 10px 20px; font-size: 16px; text-decoration: none; border-radius: 25px; transition: background-color 0.3s, transform 0.2s; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); display: inline-block; }
.info-button:hover { background-color: #767676; transform: translateY(-2px); }
@media (max-width: 768px) { .info-button { width: 100%; text-align: center; } }


.gallery-list {
  padding: 16px 16px 80px; /* ÇÏ´Ü ¹öÆ°À» À§ÇÑ ¿©¹é Ãß°¡ */
}

.gallery-list img {
  width: 100%;
  height: auto; /* ÀÚµ¿ ºñÀ²·Î ³ôÀÌ Á¶Àý */
  margin-bottom: 16px; /* ÀÌ¹ÌÁö °£°Ý */
  border-radius: 8px; /* µÕ±Ù ¸ð¼­¸® */
  object-fit: cover; /* ÀÌ¹ÌÁö ºñÀ² À¯Áö */
}


/* µî·ÏÇÏ·¯±â°¡ ¹öÆ° */
.register-button {
  display: block; 
  width: 90%; /* ³Êºñ¸¦ 90%·Î ¼³Á¤ */
  max-width: 320px; /* ÃÖ´ë ³Êºñ Á¦ÇÑ */
  height: 50px;
  background-color: #000000;
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  line-height: 50px;
  border-radius: 8px;
  text-decoration: none;
  margin: 24px auto; /* ¼öÁ÷ ¿©¹é + °¡·Î Áß¾Ó Á¤·Ä */
}
/* BASIC css end */

