/* Custom styles that complement Tailwind CSS */

/* Only keeping essential styles that aren't handled by Tailwind */
.gradient-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #f8fafc;
    overflow: hidden;
}

/* Custom animation for the gradient blobs will be handled by JavaScript */
@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(5%, 5%) scale(1.1);
    }
    66% {
        transform: translate(-5%, -5%) scale(0.9);
    }
    100% {
        transform: translate(0, 0) scale(1);
    }
} 