Blurred bubble
by Anatoly Kulikov
HTML
<div class="area">
<div class="curcle"></div>
<div class="curcle2"></div>
</div>
CSS
@keyframes move {
0% {
left: 5%;
}
50% {
left: 95%;
}
100% {
left: 5%;
}
}
.area {
position: relative;
width: 100%;
height: 90vh;
background: #fff;
overflow: hidden;
}
.curcle {
position: absolute;
top: 100px;
width: 200px;
height: 250px;
border-radius: 50%;
background: #11CCCC;
filter: blur(50px);
animation: move 15s infinite ease-in-out;
background-blend-mode: overlay;
}
.curcle2 {
position: absolute;
top: 200px;
left: 100px;
width: 200px;
height: 250px;
border-radius: 50%;
background: #ff0000;
filter: blur(50px);
animation: move 5s infinite ease-in-out;
background-blend-mode: overlay;
}