[Tex/LaTex] Placement of page numbers is too low

margins

I'm trying to set page numbering but somehow it ends up lower than it should and the numbers touch the edge of the page, which looks strange and is exactly what I don't want it to look like. How can I adjust the position of the numbers?
I didn't use any settings for page numbering. I use several packages, maybe it has something to do with it

\usepackage[utf8]{inputenc}
\usepackage{graphicx}
\usepackage{float}
\usepackage{multicol}
\usepackage{a4wide}
\usepackage[margin={1cm, 1cm}]{geometry}

Best Answer

Assuming that this is only for saving paper, you can pass these options to geometry:

\usepackage[a4paper,margin=1cm,footskip=.5cm]{geometry}

Never use a4wide, it's outdated, obsolete and buggy. Just geometry suffices.