body {
    background-image: url('img/thiccc.gif');
    background-size: cover;
    background-position: center;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.image {
    width: 80%;
    max-width: 800px;
    animation: spin 4s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(-360deg);
    }
}

/* Footer Styling */
footer {
    position: absolute;
    bottom: 10px;
    text-align: center;
    width: 100%;
    font-family: Arial, sans-serif;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
}

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

footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 600px) {
    .image {
        width: 90%;
    }
}
