How does a cubic Bezier work?
A Cubic Bezier curve is defined by four points P0, P1, P2, and P3. P0 and P3 are the start and the end of the curve and, in CSS these points are fixed as the coordinates are ratios. ... The cubic-bezier() function can be used with the animation-timing-function property and the transition-timing-function property.
Thanks