#club-page-body { display: flex; flex-direction: column; } #club-information-container { height: 100px; width: fit-content; margin: 20px; background: linear-gradient(to right, white, rgb(245, 245, 245), rgb(227, 227, 227)); /* Gradient from white to gray */ padding: 10px 20px; /* Adjust padding as needed */ transform: skewX(-20deg); /* Skew the banner to create a triangular side */ cursor: pointer; /* Change cursor to pointer on hover */ box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.4); display: flex; /* Use flexbox for layout */ align-items: center; /* Center content vertically */ /* Add any other styling you need for the club information container */ } #club-information-container::after { content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 8px; /* Width of the red strip */ background-color: red; /* Red color */ } #club-page-contents-container { display: flex; flex-direction: row; } #club-history-container { width: 20%; } #club-stats-and-players-container { width: 80%; }