  /* Additional CSS for styling the progress ring and other elements if needed */
  .bg-game {
    background-image: url('./images/game-background.png');
    background-size: cover;
    background-position: center;
  }
  .game-title {
    height: 150px; /* Adjust the height as needed */
    width: 100%; /* The image will occupy the full container width */
    background-image: url('./images/styles/title.png');
    background-size: contain; /* This will make sure that your image fits within the container */
    background-repeat: no-repeat;
    background-position: center center; /* This will center your image in the div */
    padding-top: 200px; /* Adjust this value to push the image lower */
  }
  .game-subtitle {
    font-size: 1.5rem;
    color: #fff;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.65);
    font-weight: bold;
    font-family:"rooney-sans",sans-serif;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.4), /* Enhanced shadow for better visibility */
        -2px -2px 4px rgba(0, 0, 0, 0.4),
        2px -2px 4px rgba(0, 0, 0, 0.4),
        -2px 2px 4px rgba(0, 0, 0, 0.4);
  }
  .game-description {
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.65);
    color: rgba(255, 255, 255, 0.85); /* Lighter color for less emphasis */
    text-shadow: 1px 1px 4px rgba(0,0,0,0.65);
    max-width: 600px; /* Set a max-width for the description to control text wrapping */
    margin: 1rem auto;
    font-family:"rooney-sans",sans-serif;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.4), /* Enhanced shadow for better visibility */
        -2px -2px 4px rgba(0, 0, 0, 0.4),
        2px -2px 4px rgba(0, 0, 0, 0.4),
        -2px 2px 4px rgba(0, 0, 0, 0.4);
  }

  body {
    background: url('./images/styles/background-time-travel.png') no-repeat center center fixed;
    background-size: cover;
    backdrop-filter: blur(3px);
  }
  .header-container {
    padding-bottom: 200px; /* Adjust this value to lower the title, subtitle, and description */
  }
  .button-container {
    position: relative;
    top: -95px; /* Adjust this value to raise the button */
  }