/* Minimal and modern styling */

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  #content {
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }
  
  h1, h2 {
    margin-bottom: 20px;
  }
  
  .buttons {
    margin: 10px 0;
  }
  
  button {
    margin: 5px;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    border: 1px solid #333;
    background: #fff;
    border-radius: 4px;
    transition: background 0.2s;
  }
  
  button:hover {
    background: #eee;
  }
  
  .question-area {
    margin: 20px 0;
  }
  
  .question {
    font-size: 1.2em;
  }
  