body {
    font-family: 'Arial, sans-serif';
    background-color: #f3f4f6;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
    max-width: 600px;
}

.title {
    font-size: 2.5rem;
    color: #333;
    margin: 0;
}

p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.5;
    margin-bottom: 15px;
}

a {
    color: #0073e6;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

img {
    width: 250px;
    margin-top: 20px;
    border-radius: 5px;
    animation: bounce 2s infinite;
}

/* Simple animation for the GIF */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

