JSFiddle - React, Tailwind, and code Playground

HTML

<div class="container">
  <div class="btn">Btn 1</div>
  <div class="btn">Btn 2</div>
  <div class="btn">Btn 3</div>
</div>

CSS

.container {
  width: 400px;
  height: 400px;
  background: black;
  transform-origin: 0 0;
  padding-top: 30px;
  transform: scale(0.4);
}

.btn {
  border: 2px solid white;
  margin: 20px 30px;
  height: 50px;
  color: white;
  line-height: 50px;
  padding-left: 20px;
}