# Ember breathing (B 109)

Category: Buttons  
Tags: glow, warm, pill, pulse, soft-shadow  
Page: https://designforai.dev/snippet/btn-109

## Prompt

A pill button with a diagonal orange-to-red gradient (#f97316 to #ef4444), white 15px semibold text, 14px by 30px padding. Its warm drop shadow (0 6px 18px) slowly breathes larger and redder over 3 seconds. Hover lifts 2px and breathes twice as fast; active settles flat with a small shadow. Focus 3px orange outline.

## HTML

```html
<button class="btn-109">Ignite</button>
```

## CSS

```css
.btn-109 {
  font: 600 15px/1 system-ui,sans-serif;
  color: #fff;
  background: linear-gradient(135deg,#f97316,#ef4444);
  border: 0;
  border-radius: 999px;
  padding: 14px 30px;
  cursor: pointer;
  box-shadow: 0 6px 18px -4px #f9731688;
  animation: breathe109 3s ease-in-out infinite;
  transition: transform .2s
}
.btn-109:hover {
  transform: translateY(-2px);
  animation-duration: 1.5s
}
.btn-109:focus-visible {
  outline: 3px solid #f97316;
  outline-offset: 3px
}
.btn-109:active {
  transform: translateY(0);
  animation: none;
  box-shadow: 0 2px 6px -2px #ef444488
}
@keyframes breathe109 {
  50% {
    box-shadow: 0 10px 34px -4px #ef4444cc
  }
}
@media (prefers-reduced-motion: reduce) {
  .btn-109, .btn-109 * { animation: none; transition: none; }
}
```
