Brutalist tag

Brutalist tag: a CSS button. Copy the rules, or the prompt that rebuilds it.

brutalistsmalltagrotate

CSS
.btn-050 {
  font: 900 12px/1 system-ui,sans-serif;
  letter-spacing: .1em;
  color: #fff;
  background: #000;
  border: 2px solid #000;
  border-radius: 0;
  padding: 8px 12px;
  cursor: pointer;
  transform: rotate(-2deg);
  box-shadow: 3px 3px 0 #ef4444;
  transition: transform .1s
}
.btn-050:hover {
  transform: rotate(0deg)
}
.btn-050:focus-visible {
  outline: 2px solid #ef4444;
  outline-offset: 3px
}
.btn-050:active {
  transform: rotate(0deg) translate(3px,3px);
  box-shadow: 0 0 0 #ef4444
}
HTML
<button class="btn-050">NEW</button>
Prompt

A small brutalist tag-button: black fill, 2px black border, square corners, white 12px black-weight text "NEW" with 0.1em spacing, 8px by 12px padding, tilted -2deg, hard red #ef4444 shadow 3px 3px. Hover straightens it to 0deg; active also slides onto the shadow. Focus outline 2px red.