* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f2f2f2;
    text-align: center;
}

.maintenance-container {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 40px;
    width: 80%;
    max-width: 600px;
}

h1 {
    color: #ff6f61;
    font-size: 36px;
    margin-bottom: 20px;
}

p {
    font-size: 18px;
    color: #555;
}

.message {
    margin-top: 20px;
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 28px;
    }

    p {
        font-size: 16px;
    }
}