In the GeneratePress free version, you could:

1. Add a custom class to your Container: my-linked-container
2. Add a link to the content of your container.
3. Add some CSS:

.gb-container .my-linked-container {
position: relative;
}

.gb-container.my-linked-container a:before {
content: "";
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 10;
}