96 lines
3.5 KiB
HTML
96 lines
3.5 KiB
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="en">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
|
<title>My First Slip - Carmen Mattos</title>
|
||
|
|
<style>
|
||
|
|
:root {
|
||
|
|
--primary: #2c3e50;
|
||
|
|
--accent: #e67e22;
|
||
|
|
--bg: #f9f9f9;
|
||
|
|
--text: #333;
|
||
|
|
}
|
||
|
|
body {
|
||
|
|
font-family: 'Georgia', serif;
|
||
|
|
line-height: 1.6;
|
||
|
|
color: var(--text);
|
||
|
|
background-color: var(--bg);
|
||
|
|
margin: 0;
|
||
|
|
padding: 0;
|
||
|
|
}
|
||
|
|
header {
|
||
|
|
background-color: var(--primary);
|
||
|
|
color: white;
|
||
|
|
padding: 2rem 1rem;
|
||
|
|
text-align: center;
|
||
|
|
}
|
||
|
|
h1 {
|
||
|
|
margin: 0;
|
||
|
|
font-size: 2.5rem;
|
||
|
|
font-weight: bold;
|
||
|
|
}
|
||
|
|
.container {
|
||
|
|
max-width: 800px;
|
||
|
|
margin: 2rem auto;
|
||
|
|
padding: 0 1.5rem;
|
||
|
|
}
|
||
|
|
.story-card {
|
||
|
|
background: white;
|
||
|
|
border-radius: 8px;
|
||
|
|
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
|
||
|
|
padding: 2rem;
|
||
|
|
margin-bottom: 2rem;
|
||
|
|
}
|
||
|
|
.story-card h2 {
|
||
|
|
color: var(--accent);
|
||
|
|
margin-top: 0;
|
||
|
|
}
|
||
|
|
.back-button {
|
||
|
|
display: inline-block;
|
||
|
|
background-color: var(--primary);
|
||
|
|
color: white;
|
||
|
|
padding: 0.8rem 1.5rem;
|
||
|
|
text-decoration: none;
|
||
|
|
border-radius: 4px;
|
||
|
|
font-weight: bold;
|
||
|
|
margin-top: 1rem;
|
||
|
|
}
|
||
|
|
.back-button:hover {
|
||
|
|
background-color: #34495e;
|
||
|
|
}
|
||
|
|
.quote {
|
||
|
|
font-style: italic;
|
||
|
|
border-left: solid var(--accent);
|
||
|
|
padding-left: 1rem;
|
||
|
|
margin: 1.5rem 0;
|
||
|
|
color: #555;
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
<script defer src="https://analytics.4ort.xyz/script.js" data-website-id="d3ed927c-888a-4a6c-ae5f-0b1c613ddf5b"></script>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<header>
|
||
|
|
<h1>My First Slip</h1>
|
||
|
|
</header>
|
||
|
|
|
||
|
|
<div class="container">
|
||
|
|
<div class="story-card">
|
||
|
|
<h2>The Pink Recado Rojo</h2>
|
||
|
|
<p>It was 2015, and I was preparing for the annual neighborhood festival in Jamaica. The community had asked me to make my famous *recado rojo* — that rich, crimson sauce that brings the taste of Guatemala to our tables. I had spent weeks planning, sourcing the best ingredients, and organizing the cooking schedule.</p>
|
||
|
|
|
||
|
|
<p>But in my rush to get everything ready, I made a mistake. I forgot to add the *achiote* — the annatto seeds that give the sauce its deep, vibrant red color. Instead, I ended up with a pale, almost pink sauce. It was a disaster.</p>
|
||
|
|
|
||
|
|
<div class="quote">
|
||
|
|
"But you know what? That pink sauce became the most talked-about dish at the festival. People loved it. They said it tasted like a memory of childhood, even though it wasn't quite right."
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<p>That mistake taught me something important: sometimes the most beautiful things come from our mistakes. It taught me to slow down, to double-check my work, and to embrace the unexpected. And now, every time I make *recado rojo*, I keep a little bit of that pink sauce in my heart.</p>
|
||
|
|
|
||
|
|
<p>This is my "First Slip" — a reminder that even the best of us make mistakes, and that's okay. In fact, those mistakes are what make us who we are.</p>
|
||
|
|
|
||
|
|
<a href="index.html" class="back-button">Back to Home</a>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</body>
|
||
|
|
</html>
|