Neo-brutal yellow

Neo-brutal yellow: a CSS button. Copy the rules, or the prompt that rebuilds it.

brutalistneo-brutalisthard-shadowsquare

CSS
.btn-044 {
  font: 700 15px/1 system-ui,sans-serif;
  color: #000;
  background: #fde047;
  border: 3px solid #000;
  border-radius: 0;
  padding: 12px 24px;
  cursor: pointer;
  box-shadow: 5px 5px 0 #000;
  transition: transform .1s,box-shadow .1s
}
.btn-044:hover {
  transform: translate(-2px,-2px);
  box-shadow: 7px 7px 0 #000
}
.btn-044:focus-visible {
  outline: 3px solid #2563eb;
  outline-offset: 3px
}
.btn-044:active {
  transform: translate(5px,5px);
  box-shadow: 0 0 0 #000
}
HTML
<button class="btn-044">Click me</button>
Prompt

A neo-brutalist button: bright yellow #fde047 fill, 3px solid black border, square corners, black 15px bold text, 12px by 24px padding, and a hard black offset shadow 5px 5px with no blur. Hover shifts the button up-left 2px and the shadow grows to 7px; active slides it 5px down-right onto the shadow so the shadow disappears. Focus outline 3px blue.