/* Basic Reset and Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4; /* Light gray background */
    color: #333;
    text-align: center; /* Center text globally */
}

/* Container for Centering Content */
.container {
    /* Use flexbox for perfect vertical and horizontal centering */
    display: flex;
    flex-direction: column; /* Stack items vertically */
    justify-content: center; /* Center items vertically in the available space */
    align-items: center; /* Center items horizontally */
    
    /* Set container to take up the full viewport height */
    min-height: 100vh; 
    
    /* Limit the overall width for better readability on large screens */
    max-width: 900px;
    margin: 0 auto; /* Center the container on the page */
    padding: 20px;
}

/* Title Styling */
h1 {
    font-size: 2.5em; /* Larger size */
    color: #007bff; /* A prominent color (blue) */
    margin-bottom: 20px;
}

/* Image Styling for Fluidity */
.construction-image {
    /* Fluid Design: Image will scale down to 80% of its container */
    max-width: 80%;
    
    /* Ensure the image doesn't overflow its container */
    height: auto; 
    
    /* Add some spacing */
    margin-bottom: 30px;
    border-radius: 8px; /* Slightly rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* Mobile-Specific Adjustments (Optional but good practice) */
@media (max-width: 600px) {
    h1 {
        font-size: 1.8em; /* Smaller title on small screens */
    }
    
    /* Increase image width slightly on very small screens to utilize space */
    .construction-image {
        max-width: 95%;
    }
}