/* CSS Styles for the Flood.js Web Ring and Toy! */

.wave {
    cursor: url("https://melonking.net/images/ui/bucket.png"), pointer !important;
}

#flood {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 100%;
    left: 0px;
    z-index: -1;
}
#flood-menu {
    display: none;
    position: fixed;
    left: 0px;
    bottom: 0px;
    padding: 5px;
    text-align: left;
    color: var(--text-color);
    background-color: var(--background-color);
    border-top-right-radius: 8px;
    font-size: 14px;
    /*z-index: 1001;*/
}

#flood-message {
    
}

#flood-menu button {
    border-radius: 2px;
    background-color: var(--background-color);
    border: 1px solid var(--text-color);
}
#flood-menu button:hover {
    background-color: #00f3ff;
}

body {
    --wave-color: rgba(35, 92, 154, 0.1);
}

.wave > use {
    animation: slide 40s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
    fill: url("#water");
}
.wave > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 14s;
}
.wave > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 20s;
}
.wave > use:nth-child(3) {
    animation-delay: -5s;
    animation-duration: 40s;
}
@keyframes slide {
    0% {
        transform: translate3d(-90px, 0, 0);
    }
    100% {
        transform: translate3d(85px, 0, 0);
    }
}
