.circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    animation: move 20s linear infinite;
}

.circle:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 30%;
    animation-duration: 15s;
}

.circle:nth-child(2) {
    width: 90px;
    height: 90px;
    top: 67%;
    left: 30%;
    animation-duration: 40s;
}

.circle:nth-child(3) {
    width: 30px;
    height: 30px;
    top: 50%;
    left: 50%;
    animation-duration: 25s;
}

.circle:nth-child(4) {
    width: 50px;
    height: 50px;
    top: 50%;
    left: 80%;
    animation-duration: 15s;
}

.circle:nth-child(5) {
    width: 70px;
    height: 70px;
    top: 20%;
    left: 80%;
    animation-duration: 35s;
}

@keyframes move {
    0% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-50px) translateX(-50px);
    }
    100% {
        transform: translateY(0) translateX(0);
    }
}


.snowflakes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.snowflake {
    position: absolute;
    top: -50px;
    color: white;
    font-size: 1.5em;
    user-select: none;
    z-index: auto;
    will-change: transform;
    animation-name: fall;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes fall {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
    }
}

.snowflake:nth-child(1) {
    left: 10%;
    animation-duration: 10s;
    animation-delay: 0s;
}

.snowflake:nth-child(2) {
    left: 20%;
    animation-duration: 12s;
    animation-delay: 2s;
}

.snowflake:nth-child(3) {
    left: 30%;
    animation-duration: 14s;
    animation-delay: 4s;
}

.snowflake:nth-child(4) {
    left: 40%;
    animation-duration: 16s;
    animation-delay: 6s;
}

.snowflake:nth-child(5) {
    left: 50%;
    animation-duration: 18s;
    animation-delay: 8s;
}

.snowflake:nth-child(6) {
    left: 60%;
    animation-duration: 10s;
    animation-delay: 1s;
}

.snowflake:nth-child(7) {
    left: 70%;
    animation-duration: 12s;
    animation-delay: 3s;
}

.snowflake:nth-child(8) {
    left: 80%;
    animation-duration: 14s;
    animation-delay: 5s;
}

.snowflake:nth-child(9) {
    left: 90%;
    animation-duration: 16s;
    animation-delay: 7s;
}

.snowflake:nth-child(10) {
    left: 95%;
    animation-duration: 18s;
    animation-delay: 9s;
}

.dust-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.dust {
    position: absolute;
    bottom: 0;
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    opacity: 0;
    animation: float 10s linear infinite;
}

@keyframes float {
    0% {
        transform: translateY(0) scale(0.5);
        opacity: 0;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

.dust:nth-child(1) {
    left: 10%;
    animation-duration: 10s;
    animation-delay: 0s;
}

.dust:nth-child(2) {
    left: 20%;
    animation-duration: 12s;
    animation-delay: 2s;
}

.dust:nth-child(3) {
    left: 30%;
    animation-duration: 14s;
    animation-delay: 4s;
}

.dust:nth-child(4) {
    left: 40%;
    animation-duration: 16s;
    animation-delay: 6s;
}

.dust:nth-child(5) {
    left: 50%;
    animation-duration: 18s;
    animation-delay: 8s;
}

.dust:nth-child(6) {
    left: 60%;
    animation-duration: 10s;
    animation-delay: 1s;
}

.dust:nth-child(7) {
    left: 70%;
    animation-duration: 12s;
    animation-delay: 3s;
}

.dust:nth-child(8) {
    left: 80%;
    animation-duration: 14s;
    animation-delay: 5s;
}

.dust:nth-child(9) {
    left: 90%;
    animation-duration: 16s;
    animation-delay: 7s;
}

.dust:nth-child(10) {
    left: 95%;
    animation-duration: 18s;
    animation-delay: 9s;
}


.breathing-element {
    width: 800px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    border-radius: 50%;
    animation: breathing 4s ease-in-out infinite;
}
.breathing-elementbt {
	width: 1px;
    height: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    border-radius: 50%;
    animation: breathing 4s ease-in-out infinite;
}

@keyframes breathing {
    0% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    }
}
