html {
    height: 100%;
    
}

body {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

footer {
    margin-top: auto;
}

.main {
    flex: 1 1 auto;
}

.containing {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding-right: 420px;
    box-sizing: border-box;
}

.rectangle {
    position: absolute;
    top: 0;
    right: 20px;
    width: 350px;
    height: 250px;
    background-color: #A19C9C;
    z-index: 10;
    border-radius: 25px;
}

.image-container {
    width: 1020px;
    height: 440px;
}

.image-container img {
    width: 100%;
    height: auto;
}

/*.maintenance {
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    padding: 20px;
    max-width: 600px;
    margin: 0 auto; /* Centers the div horizontally 
}*/

.maintenance {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    padding: 20px;
    max-width: 600px;
}