@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;700&display=swap');

body {
    font-family: 'Noto Sans KR', sans-serif;
    background-color: #f0f2f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 500px;
    text-align: center;
}

h1 {
    color: #333;
    margin-bottom: 10px;
}

h2 {
    color: #444;
}

p {
    color: #666;
    font-size: 1.1em;
    line-height: 1.6;
}

button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    margin-top: 20px;
}

button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.gender-selection {
    margin-top: 20px;
}

.gender-btn {
    margin: 0 10px;
    background-color: #5a6268;
}

.gender-btn:hover {
    background-color: #343a40;
}

.choices-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.choice-btn {
    background-color: #28a745;
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
}

.choice-btn:hover {
    background-color: #218838;
}

#retry-btn {
    background-color: #ffc107;
    color: #333;
}

#retry-btn:hover {
    background-color: #e0a800;
}

.hidden {
    display: none;
}
