/* 기본 설정 */
body {
    margin: 0;
    padding: 0;
    background-color: #fffdf9;
    color: #333;
    font-family: 'Gowun Dodum', 'Jua', sans-serif;
    line-height: 1.6;
}

/* 전체 페이지 중앙 정렬용 */
.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

/* 제목 스타일 */
h1, h2, h3 {
    margin: 1.2rem 0 0.5rem;
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
}

p {
    font-size: 1.1rem;
    color: #555;
}

/* 버튼 스타일 */
button,
.start-btn {
    background-color: #FFD54F;
    color: #000;
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease;
}

button:hover,
.start-btn:hover {
    background-color: #FFCA28;
}

/* 이모지 강조 스타일 */
.emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* 떠다니는 이모지 */
.floating-emojis {
    position: absolute;
    font-size: 2rem;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

/* 반응형 처리 */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    p {
        font-size: 1rem;
    }

    .start-btn {
        font-size: 1rem;
        padding: 0.6rem 1.5rem;
    }
}

.question-text-wrapper {
    display: flex;
    align-items: center; /* 수직 정렬 중앙 */
    font-size: 1.3em;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.question-number {
    margin-right: 0.6rem;
    font-weight: bold;
    font-size: 1.3em;
    line-height: 1.5; /* 텍스트와 높이 맞추기 */
}