This is super cool! One thing though, maybe add a print button and some styling to hide the inputs in print view:
```css
@media print {
.container:has(form){
display: none;
}
body {
background: transparent !important;
display: grid;
place-items: center;
}
#the-recipe {
padding: 40px !important;
height: 100%;
}
}
```