/*
 * File: public/css/waiting.css
 * Contains styles for decorative shapes on index.html.
 */
.shape {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(52,152,219,0.1); /* Light transparency */
    animation: float 10s ease-in-out infinite;
}

.shape--1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape--2 {
    width: 150px;
    height: 150px;
    bottom: 5%;
    right: 15%;
    animation-delay: 2s;
    background-color: rgba(255,154,80,0.1); /* Different color, light transparency */
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
    100% { transform: translateY(0px) rotate(360deg); }
}
