JSFiddle - React, Tailwind, and code Playground

HTML

<div class="bl__from">
  <div class="from__img">
    <img src="https://cdn.pixabay.com/photo/2020/06/10/09/25/anemone-5281964_960_720.jpg" />
  </div>
  <div class="from__img">
    <img src="https://cdn.pixabay.com/photo/2020/06/30/08/53/ladybug-5355655_960_720.jpg" />
  </div>
  <div class="from__img">
    <img src="https://cdn.pixabay.com/photo/2020/06/30/22/46/butterfly-5357836_960_720.jpg" />
  </div>
  <div class="from__img">
    <img src="https://cdn.pixabay.com/photo/2019/09/23/16/39/square-4499056_960_720.jpg" />
  </div>
</div>

CSS

.from__img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.from__img::before {
  content: "";
  position: absolute;
  width: 110%;
  height: 110%;
  background: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle stroke-dasharray='350' stroke-dashoffset='310' stroke-width='2' stroke='orange' transform='rotate(-170)' transform-origin='center' fill='none' cx='50' cy='50' r='50'/%3E%3C/svg%3E");
  z-index: -1;
}

/* *********************************************************** */

.bl__from {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: flex-start;
}
.from__img {
    width: 150px;
    height: 150px;
    margin: 0 10px 20px;
    border-radius: 50%;
    position: relative;
    box-shadow: inset 10px 10px 10px rgb(0 0 0 / 50%);
}


img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 50%;
}