\documentclass[twoside]{article}

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% Packages %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage[utf8]{inputenc}
%\usepackage[T1]{fontenc}
%\usepackage{tgbonum}
%\usepackage{graphicx}
%\usepackage[nott]{kpfonts}
\usepackage{float}
\raggedbottom
%\usepackage{array}
%\usepackage{wrapfig} % Let's wrap some images
%\usepackage{enumitem} % Control spacing in lists
%\usepackage{setspace} % Better control over line-spacing
%\usepackage{nicefrac} % Use nice fractions
%\usepackage[bottom]{footmisc} % Keep the footnotes at the bottom of the page
\usepackage{microtype} % Make things neater. Thanks /u/-LeopardShark-
%\usepackage{tabularray} % Easy tables
%\usepackage[defaultsans]{Cantarell} % sans-serif font; https://tug.org/FontCatalogue/firasansregular


%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% Commands %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%\graphicspath{{images/}} % Where are our images?
%\usepackage{multicol} % Include two- or three-column sections
%\counterwithout{footnote}{chapter} % Stop resetting the footnote count after each chapter
%\NumTabs{18} % Define 18 tab stops (at 1/4" intervals) [tabto package]
\raggedbottom  % Don't force text to fill page
%\setlength{\belowcaptionskip}{4pt} % Adjust space between caption and figure


%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% Document Setup%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage{geometry}
\geometry{
	paperheight=8.5in,
	paperwidth=5.5in,
%	heightrounded,
	margin=0.5in
}

\addtolength{\topmargin}{0.4in} % Adjust and bottom margin
\addtolength{\textheight}{-0.75in} % Adjust the bottom margin


%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% Page Headers%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage{fancyhdr}
\pagestyle{fancy}
 \fancyhf{}
 \fancyhead[LE,RO]{Funny Venn Diagrams}
 \fancyhead[RE,LO]{To Color and Enjoy}
 \cfoot{\thepage}
\renewcommand{\footrulewidth}{0.5pt}


%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% Chapter Title Spacing %%%%%%%%%%%%%%%%%%%%
\usepackage{titlesec}
\titleformat{\chapter}[display]
    {\normalfont\huge\bfseries}
    {\chaptertitlename\ \thechapter}
    {20pt}
    {\Huge}
\titlespacing*{\chapter}{0pt}{0pt}{40pt}


%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% Custom Macros %%%%%%%%%%%%%%%%%%%%%%%%%%%%

% Add an \hrule with space above and below
\newcommand\krule[2]{\vspace{#1}\hrule\vspace{#2}}

% Make hrefs easier (must load package hyperref}
\newcommand\kref[2]{\href{#1}{{\texttt{#2}}}}


%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% Let's draw circles! %%%%%%%%%%%%%%%%%%%%%%
\usepackage{tikz}


%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% Include URLS %%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Be sure to load this package last
% [hidelinks option to hide big red box. Thanks /u/0b0101011001001011
\usepackage[hidelinks]{hyperref} % Inlcude URLs, but load this package last


%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% Document Information %%%%%%%%%%%%%%%%%%%%%
\author{Kenneth John Odle}
\title{
 {\Huge Funny Venn Diagrams} \\
 {\footnotesize To Color and Enjoy \\
 \bigskip
 Typeset in \LaTeX{} \\
 Issue \# CHANGE THIS}
}
\date{\begin{small}\today{}\end{small}}


%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% Let's get it started %%%%%%%%%%%%%%%%%%%%%

\begin{document}
\maketitle
\newpage

\section*{Introduction}
All contents  \copyright2025 Kenneth John Odle



\tableofcontents
\newpage


\section{What Is a Venn Diagram?}

\begin{center}
\scalebox{0.8}{ %  begin scalebox
\begin{tikzpicture}
	\draw (0,2) circle (4);
	\draw (2,-2) circle (4);
	\draw (-2,-2) circle (4);
	\node[align=center, text width=2cm, scale=1.4] at (0,-0.5) {Venn Digrams};
\end{tikzpicture}
} % end scalebox
\end{center}


\end{document}