Big O is describing a class of functions.
It describes how fast functions grow for big input values.
For a given function f, O(f) descibes all functions g(n) for which you can find an n0 and a constant c so that all values of g(n) with n >= n0 are less or equal to c*f(n)
In less mathematical words O(f) is a set of functions. Namely all functions, that from some value n0 onwards, are growing slower or as fast as f.
If f(n) = n then
g(n) = 3n is in O(f).Because constant factors do not matter h(n) = n+1000 is in O(f) because it might be bigger for all values smaler than 1000 but for big O only huge inputs matter.
However i(n) = n^2 is not in O(f) because a quadratic funcion grows faster than a linear one.