/* Apply the black background to the entire page */
body {
    background-color: #000000; /* Black color */
    margin: 0; /* Remove default margin */
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    min-height: 100vh; /* Ensure the body takes up the full viewport height */
    font-family: Arial, sans-serif;
}

/* Container for better centering */
.container {
    padding: 20px;
}

/* Style for the Download Button */
.download-button {
    /* Blue background */
    background-color: #007bff;
    /* White text color */
    color: white;
    /* Remove the default underline from the anchor tag */
    text-decoration: none;
    /* Add padding for size */
    padding: 15px 30px;
    /* Make the corners slightly rounded */
    border-radius: 5px;
    /* Change cursor to indicate it's clickable */
    cursor: pointer;
    /* Display as inline-block to allow padding/margins */
    display: inline-block;
    /* Optional: Add a subtle shadow */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    /* Make text bold */
    font-weight: bold;
    /* Slightly increase text size */
    font-size: 1.1em;
    /* Optional: Smooth transition for hover effects */
    transition: background-color 0.3s ease, transform 0.1s ease;
}

/* Hover effect for a better user experience */
.download-button:hover {
    background-color: #0056b3; /* Darker blue on hover */
    transform: translateY(-2px); /* Slight lift effect */
}

/* Active/Click effect */
.download-button:active {
    background-color: #004085; /* Even darker blue when clicked */
    transform: translateY(0); /* Return to original position */
}