/* Body Styling */
body {
    background-color: #ffffff;
    font-family: sans-serif;
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* Centering the Heading */
h1 {
    font-size: 2.5em;
    color: #000;
    margin: 0;
}

/* Positioning the Maintenance Text */
p {
    font-size: 1.2em;
    color: #666;
    margin: 0;
    text-align: center;
}

/* Positioning the Contact Text at the Bottom */
.contact {
    position: absolute;
    bottom: 20px;
    font-size: 1em;
    color: #666;
}

/* Styling the Mail Link */
a {
    color: #007BFF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
