/* styles.css */

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

h1 {
    color: #ff6347;
    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;
    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: #222831;
    color: #eeeeee;
    padding: 20px 0;
    text-align: center;
}

footer a {
    color: #ff6347;
    text-decoration: none;
    transition: color 0.3s ease;
    margin: 0 10px;
    font-weight: 500;
}

footer a:hover {
    color: #ff8367;
    text-decoration: underline;
}

footer nav {
    margin-top: 15px;
}

#footer-text {
    margin-bottom: 15px;
}

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