/* Basic reset for margins and paddings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Full-screen container */
.construction-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    background-color: #f4f4f4;
    font-family: Arial, sans-serif;
    color: #333;
}

/* Image styling */
.construction-image {
    max-width: 100%;
    height: 80%;
}

/* Title styling */
.construction-title {
    font-size: 2.5em;
    margin-top: 20px;
    color: #000;
    font-weight: bolder;
}

/* Message styling */
.construction-message {
    font-size: 1.2em;
    margin-top: 10px;
}




