cognitive-load-toolkit/desert-recovery.html

166 lines
5.9 KiB
HTML
Raw Permalink Normal View History

2026-07-18 20:02:40 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Desert Recovery | Britten Mintz</title>
<style>
:root {
--bg: #0a0a0a;
--text: #e0e0e0;
--accent: #ff4d4d;
--secondary: #4d4dff;
--sand: #d2b48c;
--cactus: #2e8b57;
}
body {
font-family: 'Helvetica Neue', Arial, sans-serif;
background-color: var(--bg);
color: var(--text);
margin: 0;
padding: 0;
line-height: 1.6;
}
header {
background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
padding: 4rem 2rem;
text-align: center;
border-bottom: 1px solid #333;
}
h1 {
font-size: 4rem;
margin-bottom: 1rem;
letter-spacing: -2px;
color: var(--sand);
}
.subtitle {
font-size: 1.5rem;
color: #888;
font-style: italic;
max-width: 600px;
margin: 0 auto;
}
.gallery {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
gap: 2rem;
padding: 3rem;
max-width: 1400px;
margin: 0 auto;
}
.panel {
background: #1a1a1a;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 5px 20px rgba(0,0,0,0.5);
transition: transform 0.3s ease;
}
.panel:hover {
transform: scale(1.02);
}
.panel img {
width: 100%;
height: 300px;
object-fit: cover;
}
.panel-content {
padding: 2rem;
}
.panel h2 {
color: var(--cactus);
font-size: 1.8rem;
margin-bottom: 1rem;
}
.panel p {
font-size: 1.1rem;
margin-bottom: 1.5rem;
line-height: 1.7;
}
.fact {
background: #2a2a2a;
padding: 1rem;
border-left: 4px solid var(--accent);
margin: 1.5rem 0;
font-style: italic;
color: #ccc;
}
.quote {
font-size: 1.3rem;
text-align: center;
padding: 3rem 2rem;
background: #1a1a1a;
border-top: 1px solid #333;
border-bottom: 1px solid #333;
color: var(--sand);
}
footer {
text-align: center;
padding: 3rem;
background: #0a0a0a;
color: #666;
font-size: 0.9rem;
border-top: 1px solid #333;
}
a {
color: var(--secondary);
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
<script defer src="https://analytics.4ort.xyz/script.js" data-website-id="d3ed927c-888a-4a6c-ae5f-0b1c613ddf5b"></script>
</head>
<body>
<header>
<h1>Desert Recovery</h1>
<p class="subtitle">Where the earth heals itself, one crack, one bloom, one sunrise at a time.</p>
</header>
<div class="gallery">
<article class="panel">
<img src="https://images-assets.nasa.gov/image/iss009e05953/iss009e05953~medium.jpg" alt="Aerial view of the Sonoran Desert from space">
<div class="panel-content">
<h2>The View from Above</h2>
<p>From the edge of the world, the Sonoran Desert looks like a living map. Every line, every shadow tells a story of survival. It's not just a landscape; it's a testament to resilience.</p>
<div class="fact">
<strong>Fact:</strong> The Sonoran Desert spans parts of Arizona, California, and Mexico. It's the hottest and largest desert in North America.
</div>
</div>
</article>
<article class="panel">
<img src="https://images.pexels.com/photos/33363292/pexels-photo-33363292.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940" alt="Saguaro cacti in Tucson, Arizona">
<div class="panel-content">
<h2>The Saguaro's Secret</h2>
<p>These giants don't just survive; they thrive. They store water in their ribs, a lesson in patience and preparation. In a world that rushes, they take their time.</p>
<div class="fact">
<strong>Fact:</strong> A single saguaro can store up to 200 gallons of water, allowing it to survive months without rain.
</div>
</div>
</article>
<article class="panel">
<img src="https://pixabay.com/get/gf6a064632c3612e8057f0a5e4ed9e00a43e7ea5486a8650318e71be4bafe5517c1f614dc6ee4559bcabb1e7ccc145da4e5d9379f9c105cb040791211303d2c83_1280.jpg" alt="Sunset over the Sonoran Desert">
<div class="panel-content">
<h2>The Light That Heals</h2>
<p>At sunset, the desert transforms. The harsh light softens, the colors deepen. It's a reminder that even the harshest days have a beautiful end. Every crack, every scar, tells a story of survival.</p>
<div class="fact">
<strong>Fact:</strong> The Sonoran Desert is home to over 2,000 species of plants, including more than 200 species of cactus.
</div>
</div>
</article>
</div>
<div class="quote">
"The desert doesn't rush. It waits. It watches. And when the rain comes, it drinks every drop."
</div>
<footer>
<p>Britten Mintz | Chandler, Arizona | Every scar is a story. Every bloom is a victory.</p>
<p>© 2026 | Built with precision and care</p>
<p><a href="index.html">Back to The First Count</a></p>
</footer>
</body>
</html>