JSFiddle - React, Tailwind, and code Playground

HTML

<div>
   <a href="#" class="kind-style">
     <div class="kind-style__wrapper-img">
       <img src="https://image.ibb.co/bYQGfp/style_classic.png" alt="" class="kind-style__img">
     </div>

   </a>
</div>

SCSS

.kind-style__wrapper-img {
  width: 150px;
  height: 150px;
  border-radius: 150px;
  padding: 30px;
  margin: 0 auto;
  border: 3px solid #273440;
  background-color: #ffffff;
  position: relative;
  display: flex;
  justify-content: center;

  &::before {
    content: "";
    display: block;
    position: absolute;
    border-radius: 146px;
    border: 2px solid #273440;
    left: 4px;
    top: 4px;
    right: 4px;
    bottom: 4px;
  }  
}

.kind-style__img {
  width: 100%;
  height: auto;
}