
.GoldSplash-1,
.GoldSplash-2 {
    border-radius: 50%;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: 1;
}
.GoldSplash-2{
  z-index: 2;
}

.GoldSplash-1 {
    background-image: linear-gradient(to right bottom, #ffd200, #ff3200);
    animation: animation_wave 2s linear infinite;
    box-shadow: 0 0 80px 50px rgb(255, 136, 0);
}


.GoldSplash-2 {
    background-image: linear-gradient(to right bottom, #000000, #000000);
    animation: animation_wave2 2s linear infinite;
    box-shadow: 0 0 10px 10px rgb(0, 0, 0);
    transition-delay: 0.5s;
}


@keyframes animation_wave {
    0% {
        transform: scale(0);
        opacity: 1;
    }

    40% {
        transform: scale(0.35);
        opacity: 0.95;

    }

    90% {
        transform: scale(0.85);
        opacity: 1;

    }

    100% {
        transform: scale(1);
        opacity: 0.8;

    }
}

@keyframes animation_wave2 {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    40% {
        transform: scale(0.25);
        opacity: 0.2;
    }

    90% {
        transform: scale(0.65);
        opacity: 0.8;
    }

    100% {
        transform: scale(0.85);
        opacity: 1;
    }
}