body {
    font-family: sans-serif;
    line-height: 1.6;
    margin: 2em;
    background-color: #FFFFFF; /* Changed to white */
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertical centering */
    align-items: center; /* Horizontal centering */
    min-height: 100vh;
    text-align: center; /* Center footer text */
}

/* Style for the logo link/image */
body > a {
    display: block; /* Treat the link as a block for layout */
    margin-bottom: 2em; /* Add some space below the logo */
}

body > a img {
    max-width: 100%; /* Ensure image is responsive */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Remove extra space below image */
    margin: 0 auto; /* Center image if body centering fails */
    animation: zoomIn 1s ease-out forwards; /* Add zoom-in animation */
}

footer {
    margin-top: auto; /* Push footer to the bottom */
    padding-top: 1em;
    border-top: 1px solid #eee;
    font-size: 0.9em;
    color: #777;
}

/* Footer link styling */
footer a {
    color: #007bff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Animation for logo */
@keyframes zoomIn {
    from {
        transform: scale(0.1); /* Start small */
        opacity: 0;
    }
    to {
        transform: scale(1); /* End at normal size */
        opacity: 1;
    }
}