In this code, I'm confused about why the space between First paragraph and Second paragraph is not equal to the space between Second paragraph and First bullet. How can I make them equal?
\documentclass[11pt]{article}
\setlength{\parskip}{0.7ex}
\setlength{\parindent}{0pt}
\topmargin -0.5in
\textheight 9in
\oddsidemargin 0in
\evensidemargin 0 in
\textwidth 6.4in
\usepackage{amsmath}
\usepackage{amsfonts}
\linespread{0.9}
\usepackage{hyperref}
\usepackage{enumerate}
\begin{document}
\large
{\Large\bfseries First paragraph\par}
{\large\bfseries Second paragraph\par}
\begin{itemize}
\item First bullet
\item Second bullet
\end{itemize}
\end{document}