html, body {
    height: 100%; /* Ensure the body takes up full height */
    margin: 0; /* Remove default margin */
}

body {
    text-align: center;
    background-image: url('https://images-wixmp-ed30a86b8c4ca887773594c2.wixmp.com/f/6f9b913b-c48a-43ab-a9aa-26d4355d1d80/dgf2drd-6ecf9edb-6b92-4b2d-a2e5-69241e15b22b.png/v1/fill/w_1280,h_549,q_80,strp/space_art_120___4k_ultrawide_wallpaper_background_by_ixul_dgf2drd-fullview.jpg?token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJ1cm46YXBwOjdlMGQxODg5ODIyNjQzNzNhNWYwZDQxNWVhMGQyNmUwIiwiaXNzIjoidXJuOmFwcDo3ZTBkMTg4OTgyMjY0MzczYTVmMGQ0MTVlYTBkMjZlMCIsIm9iaiI6W1t7ImhlaWdodCI6Ijw9NTQ5IiwicGF0aCI6IlwvZlwvNmY5YjkxM2ItYzQ4YS00M2FiLWE5YWEtMjZkNDM1NWQxZDgwXC9kZ2YyZHJkLTZlY2Y5ZWRiLTZiOTItNGIyZC1hMmU1LTY5MjQxZTE1YjIyYi5wbmciLCJ3aWR0aCI6Ijw9MTI4MCJ9XV0sImF1ZCI6WyJ1cm46c2VydmljZTppbWFnZS5vcGVyYXRpb25zIl19.d3TyqnMRBSmTDxr7CSwdSyc8T8vfuebfpOVI_UM12YQ');
    background-size: cover; /* This makes the image cover the entire background */
    background-position: center; /* This centers the image */
    background-repeat: no-repeat; /* Prevent image repetition */
    overflow: hidden; /* Prevent scrolling */
}

#board {
    background-color: black;
    border: 1px solid rgba(255, 255, 255, 0.5); /* Optional: Add a semi-transparent border */
    width: 600px; /* Set board width */
    height: 520px; /* Set board height */
    margin: 20px auto 0; /* Add margin-top to move the board down and center it horizontally */
}

#info {
    position: absolute; /* Use absolute positioning to place the info box */
    top: 78%; /* Increase this value to move the info box lower on the screen */
    left: 50%; /* Horizontally center the info box */
    transform: translateX(-50%); /* Offset it by 50% of its width to fully center it */
    width: 300px; /* Set box width */
    height: 120px; /* Set box height */
    text-align: center; /* Center align the text inside info */
    color: rgba(255, 255, 255, 0.9); /* Make text white for better visibility */
    font-weight: bold; /* Make text thicker */
    font-size: 24px; /* Increase the font size for prominence */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Add a subtle shadow for depth */
    background-color: rgba(0, 0, 0, 0.7); /* Add a dark semi-transparent background */
    padding: 15px; /* Add padding around the text */
    border-radius: 8px; /* Optional: rounded corners for the background */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3); /* Add shadow for a floating effect */
}


p {
    margin: 10px 0; /* Add space between paragraphs */
    font-size: 18px; /* Set font size for paragraphs */
}

.back-to-games {
    display: inline-block; /* Makes the link behave like a box */
    padding: 10px 20px; /* Adds space inside the box */
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent black background */
    color: white; /* White text color */
    border: 2px solid rgba(255, 255, 255, 0.6); /* Adds a border */
    border-radius: 5px; /* Slight rounding of the corners */
    text-decoration: none; /* Removes the underline from the link */
    font-size: 18px; /* Adjusts the font size */
    margin-top: 10px; /* Adds space above the link */
    transition: background-color 0.3s ease; /* Smooth transition for hover effect */
}

.back-to-games:hover {
    background-color: rgb(143, 35, 35); /* Darkens background on hover */
    border-color: rgba(255, 255, 255, 1); /* Lightens border on hover */
}
