html, body {
     padding: 0; 
     margin: 0; 
     width: 100%; 
     height: 100%;
     display: -webkit-box; 
     display: -ms-flexbox; 
     display: flex; 
     -webkit-box-pack: center; 
     -ms-flex-pack: center;
     justify-content: center; 
     -webkit-box-align: center;
     -ms-flex-align: center; 
     align-items: center;
}

* {box-sizing: border-box;}

.jeg-content-wrapper {
    padding: 50px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #2D5C94;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    text-align: center;
}

.jeg-maintenance-image {
    width: 600px;
    height: auto;
}

.jeg-maintenance-title{
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
    padding: 0 20px 0  20px;
}

.jeg-maintenance-description{
    font-weight: 400;
    margin: 0;
    padding: 0 20px 0 20px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .jeg-content-wrapper {
        padding: 20px;
    }
    .jeg-maintenance-image {
        width: 400px;
    }
}

@media (max-width: 480px) {
    .jeg-content-wrapper {
        padding: 10px;
    }
    .jeg-maintenance-image {
        width: 300px;
    }
}

@media (max-width: 320px) {
    .jeg-content-wrapper {
        padding: 5px;
    }
    .jeg-maintenance-image {
        width: 200px;
    }
}