* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #e5e3e3;
    text-align: center;
}

.maintenance-container {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    margin: 100px auto;
    padding: 20px;
    position: relative;
}

h1 {
    color: #ff4500;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}



/* Media Query for Mobile Devices */
@media screen and (max-width: 600px) {
    body {
        font-size: 16px; /* Adjust the font size for mobile */
    }

    .maintenance-container {
        max-width: 90%; /* Adjust the maximum width for mobile */
        margin: 20px auto; /* Adjust the margin for mobile */
        text-align: center;
        vertical-align:middle !important;
    }

}
