body, html {
    height: 100%;
    margin: 0;
    background-color: #0E1218;
    display: flex;
    align-items: center;
    justify-content: center;
}

.signi-animation img {
    width: 300px; /* Adjust size as needed */
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}
