| 1 | <!DOCTYPE html> |
| 2 | <html lang="en"> |
| 3 | <head> |
| 4 | <meta charset="UTF-8"> |
| 5 | <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 6 | <title>Puffins!</title> |
| 7 | <style> |
| 8 | body { |
| 9 | font-family: Arial, sans-serif; |
| 10 | background-color: #f0f8ff; |
| 11 | display: flex; |
| 12 | justify-content: center; |
| 13 | align-items: center; |
| 14 | height: 100vh; |
| 15 | margin: 0; |
| 16 | } |
| 17 | |
| 18 | .card { |
| 19 | background-color: white; |
| 20 | border-radius: 10px; |
| 21 | box-shadow: 0 4px 8px rgba(0,0,0,0.1); |
| 22 | padding: 30px; |
| 23 | width: 300px; |
| 24 | text-align: center; |
| 25 | } |
| 26 | |
| 27 | h1 { |
| 28 | color: #2c3e50; |
| 29 | margin-top: 0; |
| 30 | } |
| 31 | |
| 32 | ul { |
| 33 | text-align: left; |
| 34 | padding-left: 20px; |
| 35 | } |
| 36 | |
| 37 | li { |
| 38 | margin-bottom: 10px; |
| 39 | color: #34495e; |
| 40 | } |
| 41 | </style> |
| 42 | </head> |
| 43 | <body> |
| 44 | <div class="card"> |
| 45 | <h1>Puffins!</h1> |
| 46 | <ul> |
| 47 | <li>Puffins are excellent swimmers, using their wings to "fly" underwater to catch fish.</li> |
| 48 | <li>These seabirds are known for their colorful beaks, which become particularly vibrant during breeding season.</li> |
| 49 | <li>Puffins can dive up to 200 feet deep in search of food and can hold their breath for up to 30 seconds.</li> |
| 50 | </ul> |
| 51 | </div> |
| 52 | </body> |
| 53 | </html> |