main {
  display: flex;
  flex-direction: column;
  align-items: center; /* 가운데 정렬 */
  width: 100%;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 800px; /* 최대 너비 지정 (PC에서 가운데 정렬) */
  padding: 20px;
  box-sizing: border-box;
}

.main-title h1 {
  text-align: center;
  font-size: 28px; /* 더 크게 설정 */
  margin-bottom: 20px;
}

/* 이미지 컨테이너 */
.image-container {
  text-align: center;
  margin-top: 20px;
  width: 100%;
}

/* 이미지 */
.image-container img {
  width: 100%;
  max-width: 600px; /* 최대 너비 */
  height: auto;
}

/* 제목 h2 */
h2 {
  width: 100%;
  margin-top: 30px;
  border-bottom: 2px solid #333;
  padding-bottom: 8px;
  text-align: center;
  font-size: 24px;
}

/* 본문 p */
p {
  width: 100%;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.5;
}
/* 링크 텍스트를 숨기고, 일반 텍스트처럼 보이게 하기 */
.link-hidden {
  color: inherit; /* 부모 텍스트 색상과 같게 */
  text-decoration: none; /* 밑줄 제거 */
  border: none; /* 테두리 없음 */
  cursor: default; /* 커서 변경 방지 (일반 텍스트처럼 보이기) */
}
/* 반응형 미디어 쿼리 */
@media (max-width: 768px) {
  body {
    padding: 10px;
  }
  h1 {
    font-size: 24px;
  }
  h2 {
    font-size: 20px;
  }
  p {
    font-size: 14px;
  }
  .image-container img {
    max-width: 70%;
  }
}
