body {
    background-color: #121212;
    color: #ffffff;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}
.header {
    width: 100%;
    margin-bottom: 20px;
}
.stats {
    position: absolute; /* Cố định vị trí */
    top: 20px; /* Cách đỉnh 20px */
    right: 20px; /* Cách mép phải 20px */
    background-color: #1e1e1e; /* Nền hộp */
    padding: 10px; /* Khoảng cách bên trong */
    border-radius: 5px; /* Bo góc */
    display: flex; /* Sử dụng flex để sắp xếp các stat */
    flex-direction: column; /* Xếp theo cột */
    gap: 5px; /* Khoảng cách giữa các stat */
    width: auto; /* Chỉ chiếm không gian cần thiết */
}
.stat {
    text-align: left; /* Căn trái cho text trong hộp */
    font-size: 14px; /* Kích thước chữ nhỏ gọn */
}
.quiz-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 800px;
}
.number {
    font-size: 48px;
    width: 200px;
    text-align: center;
}
.buttons {
    display: flex;
    flex-direction: column;
    margin: 0 20px;
}
.button {
    background-color: #333333;
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    margin: 5px 0;
    font-size: 24px;
    cursor: pointer;
    border-radius: 5px;
}
.button:hover {
    background-color: #555555;
}
.settings {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #1e1e1e;
    padding: 10px;
    border-radius: 5px;
}
.settings label {
    display: block;
    margin-bottom: 5px;
}
.message {
    margin-top: 20px;
    font-size: 24px;
    text-align: center;
}