Brutalist stripe

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

brutalistpatternstripessquare

CSS
.btn-048 {
  font: 800 14px/1 system-ui,sans-serif;
  text-transform: uppercase;
  color: #000;
  background: #fff;
  border: 3px solid #000;
  border-radius: 0;
  padding: 12px 22px;
  cursor: pointer;
  box-shadow: 5px 5px 0 #000;
  transition: background .1s,transform .1s,box-shadow .1s
}
.btn-048:hover {
  background: repeating-linear-gradient(45deg,#fff 0 6px,#bef264 6px 12px)
}
.btn-048:focus-visible {
  outline: 3px solid #000;
  outline-offset: 4px
}
.btn-048:active {
  transform: translate(5px,5px);
  box-shadow: 0 0 0 #000;
  background: #bef264
}
HTML
<button class="btn-048">Buy ticket</button>
Prompt

A brutalist button: white fill, 3px black border, square corners, black uppercase 14px extra-bold text, 12px by 22px padding, hard 5px 5px black shadow. On hover the fill becomes 45deg diagonal stripes alternating 6px white and 6px lime #bef264; active moves onto the shadow and fills solid lime. Focus outline 3px black.