digraph {
bgcolor=white;
graph [fontname = "Handlee"];
node [fontname = "Handlee"];
subgraph cluster_0 {
color=transparent;
step1[ label = "Create/modified files\n in the project locally", color="blue"];
step2[ label = "Command of sphinx\n to reflect the changes", color="blue"];
step3[ label = "Commands add, commit and push\n to modified the repo in GitHub", color="blue"];
step4[ label = "RTD update page", shape=circle,width=1, color="green"]
}
step1 -> step2 [ penwidth=3.0 ];
step2 -> step3 [ penwidth=3.0 ];
step3 -> step4 [ penwidth=3.0 ];
}