File size: 12,421 Bytes
777461e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12ac2fd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>The Wonderful World of Poop</title>
    <script src="https://cdn.tailwindcss.com"></script>
    <link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
    <script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
    <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
    <script src="https://unpkg.com/feather-icons"></script>
    <style>
        .poop-bg {
            background-color: #8B4513;
        }
        .poop-text {
            color: #5D4037;
        }
        .poop-card {
            background-color: #D7CCC8;
            border-radius: 20px;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
        }
        .poop-btn {
            background-color: #6D4C41;
            color: white;
            transition: all 0.3s ease;
        }
        .poop-btn:hover {
            background-color: #5D4037;
            transform: translateY(-2px);
        }
    </style>
</head>
<body class="bg-amber-50">
    <!-- Navigation -->
    <nav class="poop-bg text-white py-4 px-6 shadow-lg">
        <div class="container mx-auto flex justify-between items-center">
            <div class="flex items-center space-x-2">
                <i data-feather="droplet" class="w-8 h-8"></i>
                <span class="text-2xl font-bold">PoopFacts</span>
            </div>
            <div class="hidden md:flex space-x-6">
                <a href="#" class="hover:text-amber-200">Home</a>
                <a href="#" class="hover:text-amber-200">Types</a>
                <a href="#" class="hover:text-amber-200">Health</a>
                <a href="#" class="hover:text-amber-200">History</a>
                <a href="#" class="hover:text-amber-200">Fun Facts</a>
            </div>
            <button class="md:hidden">
                <i data-feather="menu" class="w-6 h-6"></i>
            </button>
        </div>
    </nav>

    <!-- Hero Section -->
    <section class="poop-bg text-white py-20 px-6">
        <div class="container mx-auto text-center" data-aos="fade-up">
            <h1 class="text-4xl md:text-6xl font-bold mb-6">Everything You Never Knew About Poop</h1>
            <p class="text-xl md:text-2xl mb-8 max-w-3xl mx-auto">From biology to culture, we've got the scoop on poop!</p>
            <button class="poop-btn px-8 py-3 rounded-full text-lg font-semibold shadow-lg">
                <i data-feather="arrow-right" class="inline mr-2"></i> Explore Now
            </button>
        </div>
    </section>

    <!-- Facts Section -->
    <section class="py-16 px-6">
        <div class="container mx-auto">
            <h2 class="text-3xl font-bold text-center poop-text mb-12" data-aos="fade-up">Fascinating Poop Facts</h2>
            
            <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
                <!-- Fact 1 -->
                <div class="poop-card p-6" data-aos="fade-up" data-aos-delay="100">
                    <div class="flex justify-center mb-4">
                        <i data-feather="clock" class="w-12 h-12 poop-text"></i>
                    </div>
                    <h3 class="text-xl font-bold poop-text mb-3">Average Time</h3>
                    <p class="text-gray-700">The average person spends about 92 days of their life on the toilet. That's 3 months of pooping!</p>
                </div>
                
                <!-- Fact 2 -->
                <div class="poop-card p-6" data-aos="fade-up" data-aos-delay="200">
                    <div class="flex justify-center mb-4">
                        <i data-feather="activity" class="w-12 h-12 poop-text"></i>
                    </div>
                    <h3 class="text-xl font-bold poop-text mb-3">Health Indicator</h3>
                    <p class="text-gray-700">Your poop can reveal important information about your digestive health, diet, and even stress levels.</p>
                </div>
                
                <!-- Fact 3 -->
                <div class="poop-card p-6" data-aos="fade-up" data-aos-delay="300">
                    <div class="flex justify-center mb-4">
                        <i data-feather="globe" class="w-12 h-12 poop-text"></i>
                    </div>
                    <h3 class="text-xl font-bold poop-text mb-3">Global Impact</h3>
                    <p class="text-gray-700">2.4 billion people worldwide lack access to proper sanitation, leading to serious health issues.</p>
                </div>
            </div>
        </div>
    </section>

    <!-- Types Section -->
    <section class="py-16 px-6 bg-amber-100">
        <div class="container mx-auto">
            <h2 class="text-3xl font-bold text-center poop-text mb-12" data-aos="fade-up">The Bristol Stool Chart</h2>
            
            <div class="grid grid-cols-2 md:grid-cols-7 gap-4">
                <!-- Type 1 -->
                <div class="text-center" data-aos="fade-up" data-aos-delay="50">
                    <div class="poop-card h-24 w-24 mx-auto mb-2 flex items-center justify-center">
                        <div class="h-16 w-16 rounded-full bg-amber-800"></div>
                    </div>
                    <p class="text-sm font-semibold poop-text">Type 1</p>
                </div>
                
                <!-- Type 2 -->
                <div class="text-center" data-aos="fade-up" data-aos-delay="100">
                    <div class="poop-card h-24 w-24 mx-auto mb-2 flex items-center justify-center">
                        <div class="h-16 w-16 rounded-lg bg-amber-700"></div>
                    </div>
                    <p class="text-sm font-semibold poop-text">Type 2</p>
                </div>
                
                <!-- Type 3 -->
                <div class="text-center" data-aos="fade-up" data-aos-delay="150">
                    <div class="poop-card h-24 w-24 mx-auto mb-2 flex items-center justify-center">
                        <div class="h-16 w-16 rounded-lg bg-amber-600"></div>
                    </div>
                    <p class="text-sm font-semibold poop-text">Type 3</p>
                </div>
                
                <!-- Type 4 -->
                <div class="text-center" data-aos="fade-up" data-aos-delay="200">
                    <div class="poop-card h-24 w-24 mx-auto mb-2 flex items-center justify-center">
                        <div class="h-16 w-16 rounded-lg bg-amber-500"></div>
                    </div>
                    <p class="text-sm font-semibold poop-text">Type 4</p>
                </div>
                
                <!-- Type 5 -->
                <div class="text-center" data-aos="fade-up" data-aos-delay="250">
                    <div class="poop-card h-24 w-24 mx-auto mb-2 flex items-center justify-center">
                        <div class="h-16 w-16 rounded-lg bg-amber-400"></div>
                    </div>
                    <p class="text-sm font-semibold poop-text">Type 5</p>
                </div>
                
                <!-- Type 6 -->
                <div class="text-center" data-aos="fade-up" data-aos-delay="300">
                    <div class="poop-card h-24 w-24 mx-auto mb-2 flex items-center justify-center">
                        <div class="h-16 w-16 rounded-lg bg-amber-300"></div>
                    </div>
                    <p class="text-sm font-semibold poop-text">Type 6</p>
                </div>
                
                <!-- Type 7 -->
                <div class="text-center" data-aos="fade-up" data-aos-delay="350">
                    <div class="poop-card h-24 w-24 mx-auto mb-2 flex items-center justify-center">
                        <div class="h-16 w-16 rounded-lg bg-amber-200"></div>
                    </div>
                    <p class="text-sm font-semibold poop-text">Type 7</p>
                </div>
            </div>
            
            <div class="mt-12 max-w-2xl mx-auto text-center">
                <p class="text-gray-700 mb-6">The Bristol Stool Chart classifies human feces into seven categories based on their shape and consistency, helping identify potential digestive issues.</p>
                <button class="poop-btn px-6 py-2 rounded-full font-medium">
                    Learn More About Stool Types
                </button>
            </div>
        </div>
    </section>

    <!-- Fun Facts Section -->
    <section class="py-16 px-6">
        <div class="container mx-auto">
            <h2 class="text-3xl font-bold text-center poop-text mb-12" data-aos="fade-up">Weird Poop Facts</h2>
            
            <div class="max-w-4xl mx-auto">
                <div class="poop-card p-6 mb-6" data-aos="fade-up">
                    <div class="flex items-start">
                        <i data-feather="alert-circle" class="w-6 h-6 poop-text mr-4 mt-1"></i>
                        <div>
                            <h3 class="text-xl font-bold poop-text mb-2">Ancient Toilet Paper</h3>
                            <p class="text-gray-700">Ancient Romans used a sponge on a stick soaked in salt water as toilet paper, which was shared among public toilet users!</p>
                        </div>
                    </div>
                </div>
                
                <div class="poop-card p-6 mb-6" data-aos="fade-up" data-aos-delay="100">
                    <div class="flex items-start">
                        <i data-feather="dollar-sign" class="w-6 h-6 poop-text mr-4 mt-1"></i>
                        <div>
                            <h3 class="text-xl font-bold poop-text mb-2">Poop Gold</h3>
                            <p class="text-gray-700">Scientists have found trace amounts of gold in human waste. If extracted from all sewage, it could be worth millions!</p>
                        </div>
                    </div>
                </div>
                
                <div class="poop-card p-6" data-aos="fade-up" data-aos-delay="200">
                    <div class="flex items-start">
                        <i data-feather="wind" class="w-6 h-6 poop-text mr-4 mt-1"></i>
                        <div>
                            <h3 class="text-xl font-bold poop-text mb-2">Space Poop</h3>
                            <p class="text-gray-700">Astronauts have special toilets that use suction to collect waste in zero gravity. The cost of transporting poop from space is about $19,000 per pound!</p>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </section>

    <!-- Footer -->
    <footer class="poop-bg text-white py-8 px-6">
        <div class="container mx-auto">
            <div class="flex flex-col md:flex-row justify-between items-center">
                <div class="mb-4 md:mb-0">
                    <div class="flex items-center space-x-2">
                        <i data-feather="droplet" class="w-6 h-6"></i>
                        <span class="text-xl font-bold">PoopFacts</span>
                    </div>
                    <p class="text-amber-200 mt-2">The #1 source for poop information</p>
                </div>
                
                <div class="flex space-x-4">
                    <a href="#" class="hover:text-amber-200">Privacy</a>
                    <a href="#" class="hover:text-amber-200">Terms</a>
                    <a href="#" class="hover:text-amber-200">Contact</a>
                </div>
                
                <div class="mt-4 md:mt-0 flex space-x-4">
                    <a href="#" class="hover:text-amber-200"><i data-feather="twitter" class="w-5 h-5"></i></a>
                    <a href="#" class="hover:text-amber-200"><i data-feather="instagram" class="w-5 h-5"></i></a>
                    <a href="#" class="hover:text-amber-200"><i data-feather="facebook" class="w-5 h-5"></i></a>
                </div>
            </div>
            
            <div class="mt-8 text-center text-sm text-amber-200">
                <p>© 2025 PoopFacts. All rights reserved. Because everyone poops.</p>
            </div>
        </div>
    </footer>

    <script>
        AOS.init({
            duration: 800,
            easing: 'ease-in-out',
            once: true
        });
        feather.replace();
    </script>
</body>
</html>