.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    overflow: hidden;
    z-index: 0; /* Change from -1 to 0 */
}


.shape {
    position: absolute;
    width: 50px;
    height: 50px;
    opacity: 0.7;
    animation: floatShapes 10s infinite linear;
}

.shape.triangle {
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    background-color: rgba(255, 99, 71, 0.5); /* Tomato color */
}

.shape.square {
    background-color: rgba(0, 191, 255, 0.5); /* Deep Sky Blue */
}

.shape.circle {
    border-radius: 50%;
    background-color: rgba(144, 238, 144, 0.5); /* Light Green */
}

@keyframes floatShapes {
    0% {
        transform: translateY(100vh) rotate(0deg);
    }
    100% {
        transform: translateY(-10vh) rotate(360deg);
    }
}