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

#game-container {
    text-align: center;
}

h1 {
    font-size: 2.5rem;
    color: #4cc9f0;
}

#score, #round {
    font-size: 1.5rem;
    margin: 0.5rem 0;
}

#fact {
    font-size: 1.8rem;
    margin: 2rem 0;
    color: #f72585;
}

#true-button, #false-button, #start-button, #restart-button {
    background-color: #b5179e;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2rem;
    margin: 0 1rem;
}

#game-over {
    margin-top: 2rem;
}