html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: sans-serif; /* Just in case anything ever rendered, but it shouldn't! */
}

body {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Pushes footer to the bottom */
    background-color: #f8f8f8; /* A nice, clean, light background */
}

.content-wrapper {
    flex-grow: 1; /* Makes the main content area take up all available space */
}

footer {
    padding: 0;
    margin: 0;
    text-align: center;
    width: 100%;
    z-index: 3;
    margin-top: auto;
}

footer img {
    margin: 24px;
    width: 40px; /* Adjust size as needed */
    height: auto;
    display: inline-block; /* Helps with centering */
    opacity: 0.7; /* A slight touch of minimalism */
    transition: opacity 0.3s ease; /* Smooth hover effect */
    background-color: transparent;



}

footer img:hover {
    opacity: 0.3;
}

/* Optional: Add a subtle animation if you want to hint at 'work in progress'
   without using any textual content or explicit icons. This is *super* subtle. */
@keyframes subtlePulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.01); }
    100% { transform: scale(1); }
}

body::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(underconstruction_bg.png);
    background-position: center;
    background-size: cover;
    pointer-events: none;
    animation: subtlePulse 10s infinite ease-in-out;
}

