html, body {
    height: 100%; /* Ensure the body and html take full height */
    margin: 0;
    overflow-x: hidden; /* Prevent horizontal scrolling */

}

body {
    font-family: Arial, sans-serif; /* Fallback font */
    background-color: #fff;
}


/* Under Construction Section */
.UnderConstructionBanner {
    background-color: #ffffff; /* Light gray background */
    min-height: 100vh; /* Full viewport height */
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: flex-start; /* Align content towards the top */
    text-align: center;
    position: relative; /* Allows you to use top positioning */
    padding-top: 50px; /* Adds padding at the top to move the content down slightly */

}

.UnderConstruction-content {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 50px; /* Moves the content down 100px from the top */
    padding-left: 20px; /* Add padding inside the container */
    padding-right: 20px;
}

.logo-overlay {
    width: 200px; /* Size of the logo */
    margin-bottom: 5px;
}

.hero-title {
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.8em; /* Large font size for visibility */
    color: #333; /* Dark gray color */
    margin: 0;
    line-height: 1.2em;
   
}

h2 {
    padding: 20px; /* Add padding inside the element */
    font-size: 2em; /* Adjust font size if needed */
    margin: 20px 0; /* Adds margin around the element */
}

a {
    color: inherit; /* Inherit the color from the parent element */
    text-decoration: none; /* Remove underline */
}

/* Optionally, add hover effect */
a:hover {
    color: #004ff9; /* Set a custom color on hover */
    text-decoration:none; /* Optionally add underline on hover */
}
/* Adjust for smaller screens */
@media (max-width: 750px) {
    h2 {
        padding: 30px; /* Increase padding for smaller screens */
        font-size: 1.5em; /* Adjust font size for smaller screens */
    }
}

@media (max-width: 500px) {
    h2 {
        padding: 40px; /* Further increase padding for very small screens */
        font-size: 1.3em; /* Reduce font size more for smaller screens */
    }
}