/* styles.css */

body {
    font-family: Arial, sans-serif;
    background-color: #10d48e;
    text-align: center;
    padding-top: 100px;
}

h1 {
    color: #ffffff;
    font-size: 48px;
    margin-bottom: 20px;
}

p {
    color: #666;
    font-size: 24px;
    margin-bottom: 40px;
}

img#logo-image {
    width: 30%; /
    max-width: 300px;
    position: absolute;
    top: 65%;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
}

img#maintenance-image {
    width: 300px;
    height: 300px;
    margin-top: 40px;
    border-radius: 50%;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
    animation: bounce 1s ease infinite;
}

footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50px;
    line-height: 5px;
    background-color: #10d48e;
    color: #eeeeee;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
}
