body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    color: #333;
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 600px;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center; /* 텍스트 중앙 정렬 */
}

h1 {
    text-align: center;
}

.question {
    margin: 20px 0;
}

button {
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 16px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

.result {
    margin-top: 20px;
    font-size: 18px;
    text-align: center;
}

/* 로딩 메시지 스타일 */
#loading {
    font-size: 24px; /* 글씨 크기 조정 */
    color: #007bff;
    display: none; /* 기본적으로 숨김 */
    position: fixed; /* 고정 위치 */
    top: 50%; /* 화면 중앙 */
    left: 50%; /* 화면 중앙 */
    transform: translate(-50%, -50%); /* 중앙 정렬 */
}
