/* Reset some default styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f1f1f1;
}

/* Center the maintenance container */
.maintenance-container {
    text-align: center;
    margin: 5% auto;
    max-width: 600px;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* Style the maintenance image */
.maintenance-container img {
    max-width: 100%;
    height: auto;
}

/* Style the heading */
.maintenance-container h1 {
    font-size: 24px;
    color: #333;
    margin-top: 20px;
}

/* Style the paragraphs */
.maintenance-container p {
    font-size: 16px;
    color: #555;
    margin-top: 10px;
    line-height: 1.5;
}

/* Add some bottom margin for the last paragraph */
.maintenance-container p:last-child {
    margin-bottom: 20px;
}
