Usually you store a single instance of the Singleton class in a static variable of that class. This does not make this instance static. Only a link to it is static.
Since you can only get this single instance through the static method of the class (you cannot explicitly construct instances of the Singleton class through the constructor, otherwise it would not be single), the reference to this instance should be stored in a static variable.