On line 11 of my Codepen (link) I have the following
body{overflow:hidden;}
that was my last attempt to hide the overflow of content to the right side of the body...
A div called ".talk" is positioned absolute to the corner as a ribbon & "call to action"
.talk{height:50px; width:370px; position:absolute; right:0; top:0; transform:rotate(40deg); margin-right:-100px;}
However
body{overflow:hidden;}
Hides a lot of content below the first pink icon ... how can I hide the ribbons overflow without affecting the layout of the page?