There is no max height on the description of the exercise thus it can lead to an ugly overflow.  Adding some height limit with eventually an overflow property can fix the problem. ```css .month-exercise { height: 200px; overflow: auto; } ```