/* styles.css */
body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f4f4f4;
  }
  
  .game-container {
    text-align: center;
    background-color: white;
    border: 2px solid #ccc;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  .categories button {
    margin: 5px;
    padding: 10px 20px;
    font-size: 16px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .categories button:hover {
    background-color: #45a049;
  }
  
  .word-display {
    font-size: 24px;
    letter-spacing: 5px;
    margin: 20px 0;
  }
  
  .guess-input {
    margin: 20px 0;
  }
  
  #guess {
    padding: 10px;
    font-size: 16px;
    width: 50px;
    text-align: center;
  }
  
  button {
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #ddd;
  }
  
  .status p {
    font-size: 18px;
  }
  
  #game-result {
    font-size: 20px;
    font-weight: bold;
    margin-top: 20px;
  }
  