I figured it out.
Matrix.CreatePerspectiveFieldOfView(MathHelper.PiOver4, aspectRatio, 0.0001f, 1000.0f, out projection);
That is way too big of a range for the clipping planes apparently. I changed it to 1, 150 and all my problems went away.