:root {
    --backgroundColorPrimary:   #111;
    --textColorPrimary:         #fff;
    --easeInOutQuint:           cubic-bezier(0.83, 0, 0.17, 1);
    --easeInCirc:               cubic-bezier(0.55, 0, 1, 0.45);
    --easeOutQuint:             cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes blink {
    0% {
        background-color: rgba(255, 255, 255, 0.2);
    }

    50% {
        background-color: rgba(255, 255, 255, 0.5);
    }

    100% {
        background-color: rgba(255, 255, 255, 0.2);
    }
}