body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    background-image: url('maintenance.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.9;
}

.container {
    text-align: center;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    max-width: 90%;
    box-sizing: border-box;
}

.logo {
    max-width: 100px;
    margin-bottom: 20px;
}

h1 {
    font-size: 2em;
    margin: 20px 0;
}

@media (max-width: 600px) {
    h1 {
        font-size: 1.5em;
    }

    .logo {
        max-width: 80px;
    }
}
