JSFiddle - React, Tailwind, and code Playground

by Никита Егоров

HTML

<button>Get Started</button>

CSS

body {margin: 0; padding: 50px;}

button {
  width: 150px;
  height: 40px;
  position: relative;
  background-color: #6E6B6B;
  border-radius: 30px;
  border: none;
  font-family: sans-serif;
  color: white;
}

button::after {
  position: absolute;
  top: -6px;
  left: -6px;
  content: '';
  width: 160px;
  height: 50px;
  border: 1px solid #6E6B6B;
  border-radius: 30px;
}