.body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #AEBB35;

}

.maintenance-section {
    text-align: center;
    background: #AEBB35;
    padding: 80px;
    border-radius: 10px;

}

.maintenance-section img {
    width: 80%;
    height: 40%;
    margin-bottom: 0px;
}

.maintenance-section h1 {
    color: #343a40;
    font-weight: bold;
    font-size: 22px;
}

.maintenance-section h2 {
    color: #6c757d;
    font-size: 20px;
}

@media (max-width: 575px) {
    .maintenance-section h1 {
        font-size: 18px;
    }

    .maintenance-section img {
        margin-bottom: 20px;
        width: 100%;
        height: 30%;
    }

    .maintenance-section h2 {
        font-size: 18px;
        margin-top: 10px;
    }
}