/* cursor */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.cursorArea {
    overflow: hidden;
}
.cursorArea .cursor {
    width: 20vw;
    height: 20vw;
    border-radius: 100%;
    background-color: #57b798;
    opacity: .7;
    transition: all 200ms ease-out;
    position: fixed;
    filter: blur(10vw);
    pointer-events: none;
    left: 0;
    top: 0;
    transform: translate(calc(-50% + 15px), -50%);
    z-index: -1;

    -webkit-transition: all 1.5s ease-out;
    -moz-transition: all 1.5s ease-out;
    -ms-transition: all 1.5s ease-out;
    -o-transition: all 1.5s ease-out;
    transition: all 1.5s ease-out;
}
.cursorArea .cursorTop {
    position: relative;
    z-index: 3;
}