html, body, * {
    margin: 0;
    padding: 0;
    background-color: hotpink;
        }

.canvas {
    width: 800px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
        }

.circle {
    background-color: lightcyan;
    border-radius: 50%;
    border-width: 5px;
    height: 350px;
    width: 350;
    margin-right: 5px;
    margin-left: 90px;
    float: left;
    animation-name: blur;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

.circle2 {
    background-color: white;
    border-radius: 50%;
    border-width: 5px;
    height: 595px;
    width: 595px;
    margin-right: 5px;
    float: left;
    animation-name: blur;
    animation-duration: 4s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

@keyframes blur {
    from {
        -webkit-filter: blur(00px); /* Safari */
        filter: blur(00px);  }

    to {
        -webkit-filter: blur(80px); /* Safari */
        filter: blur(80px);  }
}


@keyframes blur2 {
    from {
        -webkit-filter: blur(00px); /* Safari */
        filter: blur(00px);  }

    to {
        -webkit-filter: blur(80px); /* Safari */
        filter: blur(80px);  }
}
