How to set inequality constraints in my loss function

Suppose I have a neural network with 5 nodes in the output layers.

I have a custom loss function but I want to add another term to the loss function that satisfies the following condition:

0 <= out_Node1 <= out_Node2 <= out_Node3 <= out_Node4 <= out_Node5 <= 100

any thoughts on how to achieve this?