body,
html {
    height: 100%;
    margin: 0;
}

.container {
    position: relative;
    /* Set the height of the container, so it can contain the status box */
    height: 100vh;
    /* 100% of the viewport height */
}

.bg {
    /* Full height */
    height: 100%;
    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
    /* Set the z-index for the background, lower than the status-box */
}

.info-box {
    /* Position the box near the top with padding */
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    /* Create a black background with 50% transparency */
    background-color: rgba(0, 0, 0, 0.6);
    /* Add some padding inside the box */
    padding: 20px;
    text-align: center;
    /* Make the box responsive with 15px padding on each side */
    width: calc(100% - 30px);
    max-width: 600px;
    /* Optional: Set a max-width for better control */
    z-index: 1;
    /* Set a higher value to position it above the background */
}

.info-box p {
    /* Set color and style of the text */
    color: white;
    font-family: Arial, sans-serif;
}

.status-box {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    /* Create a black background with 50% transparency */
    background-color: rgba(0, 0, 0, 0.5);
    /* Add some padding and center the text */
    padding: 20px;
    text-align: left;
    /* Make the text box wide enough */
    width: 200px;
    z-index: 1;
    /* Set a higher value to position it above the background */
}

.status-box p {
    /* Set color and style of the text */
    color: white;
    font-family: Arial, sans-serif;
}