Neo-brutal pink pill
Neo-brutal pink pill: a CSS button. Copy the rules, or the prompt that rebuilds it.
CSS
.btn-045 {
font: 800 14px/1 system-ui,sans-serif;
text-transform: uppercase;
letter-spacing: .04em;
color: #000;
background: #f9a8d4;
border: 2px solid #000;
border-radius: 999px;
padding: 12px 24px;
cursor: pointer;
box-shadow: 4px 4px 0 #000;
transition: transform .1s,box-shadow .1s
}
.btn-045:hover {
background: #f472b6
}
.btn-045:focus-visible {
outline: 3px solid #000;
outline-offset: 4px
}
.btn-045:active {
transform: translate(4px,4px);
box-shadow: 0 0 0 #000
}
HTML
<button class="btn-045">Subscribe</button>Prompt
A neo-brutalist pill: pink #f9a8d4 fill, 2px black border, fully rounded, black uppercase 14px extra-bold text with 0.04em spacing, 12px by 24px padding, hard 4px 4px black shadow. Hover deepens the pink to #f472b6; active translates 4px down-right and removes the shadow. Focus outline 3px black offset 4px.