shit.charity/index.html
2023-12-03 20:05:19 +11:00

94 lines
3.8 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>shit.charity</title>
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.0.1/dist/tailwind.min.css" rel="stylesheet">
<style>
.pink-glow {
text-shadow: 0 0 10px #ff69b4, 0 0 20px #ff69b4, 0 0 30px #ff69b4;
}
.scrolling-banner {
overflow: hidden;
position: relative;
width: 100%;
height: 220px;
}
.scroll-animation {
display: flex;
width: calc(100% * 4);
animation: scrollImages 30s linear infinite;
}
@keyframes scrollImages {
0% { transform: translateX(0); }
100% { transform: translateX(-50%); }
}
.scroll-animation img {
width: 250px;
height: 100%;
flex-shrink: 0;
}
@keyframes popIn {
0% { transform: scale(0.5); opacity: 0; }
50% { transform: scale(1.2); opacity: 1; }
100% { transform: scale(1); }
}
.pop-in {
animation: popIn 1s ease-out forwards;
}
</style>
</head>
<body class="bg-gray-900 text-white flex flex-col min-h-screen justify-between">
<header class="text-center p-8 pop-in">
<h1 class="text-6xl font-bold pink-glow">shit.charity</h1>
<p class="text-xl mt-4 pink-glow">Where your money goes into the abyss.</p>
</header>
<main class="flex-grow">
<section class="text-center p-8 pop-in">
<h2 class="text-4xl font-bold mb-4 pink-glow">Why Give to Us?</h2>
<p class="pink-glow">Because you're tired of making choices. Give here, and expect nothing back. No projects, no updates, just pure nothingness.</p>
</section>
<section class="text-center p-8 pop-in">
<h2 class="text-4xl font-bold mb-4 pink-glow">Our Promise</h2>
<p class="pink-glow">We promise to responsibly handle your money by not doing anything with it. It's our no-guarantee guarantee.</p>
</section>
<div class="scrolling-banner">
<div class="scroll-animation">
<!-- First set of images -->
<img src="./shit.png" alt="Image 1">
<img src="./bird.jpg" alt="Image 2">
<img src="./exo.jpg" alt="Image 3">
<img src="./god.jpg" alt="Image 4">
<img src="./asian.jpg" alt="Image 5">
<img src="./biki.PNG" alt="Image 6">
<img src="./perspective.jpg" alt="Image 7">
<!-- Duplicate the images for continuous effect -->
<img src="./shit.png" alt="Image 1">
<img src="./bird.jpg" alt="Image 2">
<img src="./exo.jpg" alt="Image 3">
<img src="./god.jpg" alt="Image 4">
<img src="./asian.jpg" alt="Image 5">
<img src="./biki.PNG" alt="Image 6">
<img src="./perspective.jpg" alt="Image 7">
</div>
</div>
<section class="text-center p-8 pop-in">
<h2 class="text-4xl font-bold mb-4 pink-glow">Donate</h2>
<button class="bg-black text-white py-2 px-4 border border-white">Throw Money Here</button>
</section>
</main>
<footer class="text-center p-8 pop-in">
<p class="pink-glow">© 2023 shit.charity - We Do Less So You Feel More</p>
</footer>
</body>
</html>