﻿/*body {
    margin: 0;
    height: 100vh;
    overflow-x: hidden;
    background: #0a0a0a;*/ /* base dark */
/*}

.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -10;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(138, 43, 226, 0.2), transparent 60%), radial-gradient(circle at 70% 60%, rgba(186, 85, 211, 0.15), transparent 60%), radial-gradient(circle at 50% 50%, rgba(75, 0, 130, 0.3), transparent 60%);
    background-size: 400% 400%;
    animation: moveBackground 18s ease-in-out infinite;
    filter: blur(80px);
}

@keyframes moveBackground {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}*/






/*body {
    margin: 0;
    height: 100vh;
    background: #0a0a0a;
    overflow: hidden;
}

.cloudy-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 30% 40%, rgba(186, 85, 211, 0.3), transparent 70%), radial-gradient(circle at 70% 60%, rgba(138, 43, 226, 0.25), transparent 70%), radial-gradient(circle at 50% 50%, rgba(75, 0, 130, 0.2), transparent 70%);
    background-size: 400% 400%;
    animation: cloudsMove 30s ease-in-out infinite;
    filter: blur(120px);*/ /* strong blur for cloud effect */
/*}

@keyframes cloudsMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}*/










body {
    margin: 0;
    height: 100vh;
    background: #0a0a0a;
/*    overflow: hidden;*/
    position: relative;
}

.cloudy-bg {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.blob {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(128, 0, 255, 0.3), transparent 70%);
    filter: blur(100px);
    border-radius: 50%;
    /*    animation: floatBlobs 30s ease-in-out infinite alternate;*/
    mix-blend-mode: screen;
}

    .blob:nth-child(2) {
        top: 60%;
        left: 70%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(186, 85, 211, 0.2), transparent 70%);
        animation-delay: 5s;
    }

    .blob:nth-child(3) {
        top: 30%;
        left: 80%;
        width: 550px;
        height: 550px;
        background: radial-gradient(circle, rgba(75, 0, 130, 0.25), transparent 70%);
        animation-delay: 10s;
    }

@keyframes floatBlobs {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-200px, 150px) scale(1.3);
    }

    100% {
        transform: translate(200px, -150px) scale(1);
    }
}

.blob {
    animation: floatBlobs 7s ease-in-out infinite alternate;
}
