I want to cross out (strike out) words or letters in fun ways for poster-sized text for children.
ulem and cancel produce rather formal/sterile-looking cancellations, as do tikz-based combinations of diagonal or wavy lines.
Are there any existing packages that can produce something like these 'sexy' (?) strikeouts, and accurately place them over non-monospaced fonts?
Here is my MWE, and its formal result:

\documentclass[oneside,11pt]{article}
\usepackage[a4paper, margin=0.4in,landscape] {geometry}
\usepackage{fontspec,ulem}
\setmainfont{Gill Sans}[Scale=14,BoldFont={Gill Sans SemiBold}]
\pagestyle{empty}
\renewcommand{\ULthickness}{10pt}%
\newcommand{\poster}[1]{
\vspace*{\fill}
\hspace*{\fill}#1\hspace*{\fill}
\vspace*{\fill}}
\begin{document}
\poster{merr\sout{y}ily}
\end{document}


