img {
  border-radius: 50%;
  /* Optional: ensure the image is a square to perfectly form a circle */
  width: 150px; /* or any fixed size */
  height: 150px; /* same as width to make it square */
  object-fit: cover; /* optional: ensures the image covers the area without distortion */
}