.sharing-image-container {
     width: 290px; /* Fixed width of the img tag */
     height: 420px; /* Height of the img tag */
     overflow: hidden; /* Hide the overflow */
     position: relative;
}

.sharing-image-container img {
    /* position: absolute; */
    /* left: 50%; */
    /* transform: translateX(-50%);  */
	width: 100%; /* Make the image take the full width of the container */
    height: 100%; /* Make the image take the full height of the container */
    object-fit: cover; /* Ensure the image covers the container */
    object-position: center; /* Center the image within the container */
}