I am new to LaTeX sorry if this is very naive, I have a school project and decided to use this as a chance to learn LaTeX.
After doing what some YouTube videos told me to, I somehow get a default "references" which I either want to change color or remove and have the citations under bibliography which is already blue
I did not find any related questions here, any way forward?
Here is the MWE
\documentclass[a4paper,16pt]{article}
\usepackage[utf8]{inputenc}
\usepackage{hyperref}
\hypersetup{colorlinks,linkcolor={blue},citecolor={blue},urlcolor={red}}
\begin{document}
\section*{\color{blue}Bibliography}
~\cite{enwiki:1028348687}
\bibliographystyle{plain}
\bibliography{wiki.bib}
\end{document}

\section*{\color{blue}Bibliography}and add\renewcommand*{\refname}{\color{blue}Bibliography}to your preamble. – moewe Jun 16 '21 at 06:20