/*:root {
    --bs-primary: #FF6B6B;
    --bs-secondary: #4ECDC4;
    --bs-success: #1ABC9C;
    --bs-info: #3498DB;
    --bs-warning: #F39C12;
    --bs-danger: #E74C3C;
}

body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    overflow: hidden;
}*/

@import url('https://fonts.googleapis.com/css2?family=Yanone+Kaffeesatz:wght@200..700&display=swap');
.font-syselio {
    font-family: "Yanone Kaffeesatz", sans-serif;
}

.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.aspect-square {
    aspect-ratio: 1 / 1;
}

.disc {
    position: absolute;
    border-radius: 9999px;
    opacity: 0.55;
    filter: blur(1px);
    /* Will be customized per-disc */
}

/* Disc 1 */
.disc-1 {
    width: 75vh;
    height: 75vh;
    background: rgb(51 195 240 / 0.2);
    top: 12%;
    left: -10%;
    animation: move1 21s ease-in-out infinite alternate;
}
/* Disc 2 */
.disc-2 {
    width: 50vh;
    height: 50vh;
    background: rgba(155, 135, 245, 0.2);
    top: 55%;
    left: 75%;
    animation: move2 23s ease-in-out infinite alternate;
    animation-delay: 2s;
}
/* Disc 3 */
.disc-3 {
    width: 40vh;
    height: 40vh;
    background: rgba(254, 198, 161, 0.2);
    top: 70%;
    left: 15%;
    animation: move3 27s ease-in-out infinite alternate;
    animation-delay: 6s;
}
/* Disc 4 */
.disc-4 {
    width: 25vh;
    height: 25vh;
    background: rgba(242, 252, 226, 1);
    top: 20%;
    left: 70%;
    animation: move4 19s ease-in-out infinite alternate;
    animation-delay: 4s;
}

/* Subtle, slow keyframes for each disc */
@keyframes move1 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(60px, 40px) scale(1.08);
    }
}

@keyframes move2 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-35px, -60px) scale(1.07);
    }
}

@keyframes move3 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(40px, -30px) scale(1.11);
    }
}

@keyframes move4 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-25px, 70px) scale(1.09);
    }
}
