body {
    font-family: sans-serif;
    text-align: center;
    background-color: #f0f0f0;
    padding: 2rem;
  }
  
  h1 {
    margin-bottom: 2rem;
  }
  
  .game-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .game-button {
    background-color: #4CAF50;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 10px;
    transition: background-color 0.3s;
  }
  
  .game-button:hover {
    background-color: #45a049;
  }
  
  footer {
    margin-top: 4rem;
    font-size: 0.9rem;
  }
  