Check if a time is at night (10:00 PM - 5:59 AM)
static bool isNight(DateTime date) { return date.hour >= 22 || date.hour < 6; }