body {
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f4f4f9;
}

.container {
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 20px;
    border-radius: 10px;
    background-color: #05212e; /* 深蓝色背景 */
    width: 80%;  /* 根据需要调整容器宽度 */
    max-width: 300px;  /* 防止容器过宽 */
    color: #ffffff; /* 设置字体颜色为白色 */
}

h1 {
    color: #df9f00; /* 确保标题在深色背景上清晰可见 */
}

button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #b07d00; /* 按钮背景颜色 */
    color: #ffffff; /* 按钮字体颜色 */
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #bf8800; /* 鼠标悬停时的按钮背景颜色 */
}

#answerText {
    margin-top: 20px;
    color: #ffffff; /* 调整答案文本的颜色以提高对比 */
}
