Your Sticky Text Here
.sticky-left-text {
position: fixed;
top: 50%; /* This centers the text vertically */
left: 0; /* This positions the text on the left side of the page */
transform: translateY(-50%); /* This ensures it is perfectly centered */
z-index: 9999; /* Ensure it stays on top of other content */
background-color: rgba(255, 255, 255, 0.8); /* Optional: Background color */
padding: 10px 20px; /* Optional: Adjust padding */
box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2); /* Optional: Adds a shadow */
border-radius: 5px; /* Optional: Rounded corners */
font-size: 16px; /* Optional: Adjust font size */
}
.sticky-left-text p {
margin: 0; /* Optional: Remove any extra margin around the text */
}