# Polaroid frame (C 086)

Category: Cards  
Tags: photo, polaroid, frame, rotated, light, caption  
Page: https://designforai.dev/snippet/card-086

## Prompt

Create a 220px polaroid-style photo card: white frame with 12px padding on three sides and 36px at the bottom, no radius, shadow 0 6px 18px rgba(0,0,0,.18), rotated 3deg and straightening with a 4px lift on hover. The photo is a 196px block with a hard-horizon gradient (#fdba74 to #f97316 to 45%, then #1e3a8a to #0f172a) with a slight saturate/contrast filter. Caption "Lisbon, March" centered below in a handwriting-style font, 15px, #374151.

## HTML

```html
<figure class="card-086">
  <div class="card-086__photo"></div>
  <figcaption>Lisbon, March</figcaption>
</figure>
```

## CSS

```css
.card-086 {
  width: 220px;
  margin: 0;
  padding: 12px 12px 36px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,.18);
  transform: rotate(3deg);
  font-family: "Segoe Print","Bradley Hand",cursive;
  color: #374151;
  transition: transform .3s,box-shadow .3s
}
.card-086:hover {
  transform: rotate(0) translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,0,.22)
}
.card-086__photo {
  height: 196px;
  background: linear-gradient(180deg,#fdba74 0,#f97316 45%,#1e3a8a 46%,#0f172a);
  filter: saturate(.9) contrast(1.05)
}
.card-086 figcaption {
  margin-top: 14px;
  text-align: center;
  font-size: 15px
}
```
