/* BASIC css start */
        .photo-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr); /* 3개의 동일한 너비의 열 */
            gap: 10px; /* 사진 사이의 간격 */
            text-align: center;
                margin-top: 50px;
                margin-bottom: 80px;
        }
        .photo-container img {
            width: 100%; /* 각 이미지를 열 너비에 맞춤 */
        }


        .holiday {
            font-size: 25px; /* 원하는 크기로 조정하세요 */
            font-weight: bold;
            font color: white;
        }

        .compact {
            line-height: 1.2; /* 줄 간격을 조정합니다 */
            margin: 10px 0 5px 0; /* 하단 여백을 줄여서 간격을 조절합니다 */
/* BASIC css end */

