.outline {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    border: 1px solid #E94549;
    transition: all 200ms ease-out;
    position: fixed;
    pointer-events: none;
    left: 0;
    top: 0;
    transform: translate(calc(-50% + 15px), -50%);
    z-index: 9999;
}

.cursor {
    width: 16px;
    height: 16px;
    border-radius: 100%;
    background-color: black;
    opacity: .5;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: width .3s, height .3s, opacity .3s;
    z-index: 9999;
}