body {

    background-color: #6c4b8d; /* deep purple */
    margin: 0;
    padding: 0;
    min-height: 100vh; /* the color covers the whole screen....ridiculous*/
    

}

 
 .construction {
    /* 1. Layout & Centering */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;

    /* 2. Sizing & Spacing */
    width: 100%;
    max-width: 900px;
    height: 450px; 
    margin: 40px auto; /* Centers the banner on the page */
    padding: 70px;     /* Keeps text from hitting the edges */
    box-sizing: border-box; /* Crucial: stops padding from adding to the 450px height */

    /* 3. Aesthetics & Background Fixes */
    background-image: url('images/construction.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover; /* Forces the image to be big, obvious, dumbass */
    
    /*  neon borders */
    border-radius: 20px;
    border: 2px solid hsl(66, 100%, 50%); 
    box-shadow: 0 0 20px hsl(61, 80%, 81%);
}