table {
    margin: 20px auto; /* 중앙 정렬 */
    border-collapse: separate; /* cellspacing 효과 */
    border-spacing: 10px; /* 테이블 간격 */
    width: 50px; /* 테이블 크기 */
    max-width: 100px; /* 최대 크기 제한 */
    table-layout: fixed; /* 셀 크기를 고정 */
}

th {
    padding: 3px;
    border: 1px solid rgb(0, 0, 0);
    background-color: #f0f0f0;
    white-space: nowrap; /* 텍스트 줄바꿈 방지 */
    width: 50px; /* 고정 너비 설정 */
    text-align: center; /* 중앙 정렬 */
}
/* 테이블을 포함하는 상단 메뉴 */
.header {
    width: 100%;
    padding: 10px 0;
    background-color: #ffffff; /* 연한 배경색 추가 */
    text-align: center;
}

/* 아래쪽 콘텐츠 */
.content {
    position: relative;
    text-align: center;
    padding: 20px;
}

.content::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 380px;
    height: 430px;
    background: radial-gradient(circle, #ecffce, #84ff00);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -1; /* 배경이 되도록 뒤로 배치 */
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 10px rgb(255, 72, 0);
    }
    50% {
        box-shadow: 0 0 30px rgb(255, 145, 0);
    }
}


/* 반응형 스타일 */
@media (max-width: 768px) {
    .header table {
        width: 100%;
    }
    
    .content {
        padding: 10px;
    }
}
.tight-line {
    line-height: 0.5; /* 기본값(1.5)보다 줄어든 간격 */
}
img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

@keyframes blink {
    0% { opacity: 0.7; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

.blinking-text {
    font-size: 24px;
    font-weight: bold;
    color: #00ff00;
    animation: blink 1s infinite;
}