public List <FanFic> GetCurrentResults()
 {
     FanFics.Sort((x, y) => x.Likes.CompareTo(y.Likes));
     FanFics.Reverse(); // Sorts fics by highest likes -- should be an option to change eventualy
     return(FanFics);
 }