body {
    font-family: Monospace;
    background-color: #f0f0f0;
    margin: 0px;
    overflow: hidden;
}

#blocker {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Dark overlay for contrast */
    display: flex;
    justify-content: center;
    align-items: center;
}

#instructions {
    text-align: center;
    color: white;
    font-family: Arial, sans-serif; /* Choose a clean font */
    background-image: url('/path/to/your/image.jpg'); /* Set the background image */
    background-size: cover; /* Ensure the image covers the entire div */
    background-position: center;
    padding: 50px 20px; /* Padding to create space around the text */
    width: 60%; /* Set a width for the instructions block */
    border-radius: 10px; /* Optional: Adds rounded corners */
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5); /* Optional: Add a slight shadow */
}

/* Text styling for better spacing */
#instructions p {
    margin: 15px 0; /* Space out the lines of text */
}