
.watermark {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/Images/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.1;
    z-index: -1;
    pointer-events: none;
}


@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}



@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(21, 51, 85, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(21, 51, 85, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(21, 51, 85, 0);
    }
}



@keyframes bounce {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-5px);
    }
}