Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>RAINBOW MESSAGE FOR IVAN</title> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> | |
| <style> | |
| @keyframes rainbow { | |
| 0% { color: red; } | |
| 14% { color: orange; } | |
| 28% { color: yellow; } | |
| 42% { color: green; } | |
| 57% { color: blue; } | |
| 71% { color: indigo; } | |
| 85% { color: violet; } | |
| 100% { color: red; } | |
| } | |
| @keyframes rainbow-bg { | |
| 0% { background-color: red; } | |
| 14% { background-color: orange; } | |
| 28% { background-color: yellow; } | |
| 42% { background-color: green; } | |
| 57% { background-color: blue; } | |
| 71% { background-color: indigo; } | |
| 85% { background-color: violet; } | |
| 100% { background-color: red; } | |
| } | |
| .rainbow-text { | |
| animation: rainbow 3s linear infinite; | |
| } | |
| .rainbow-bg { | |
| animation: rainbow-bg 5s linear infinite; | |
| } | |
| .rainbow-border { | |
| border: 5px solid; | |
| animation: rainbow 5s linear infinite; | |
| } | |
| .rainbow-shadow { | |
| box-shadow: 0 0 20px; | |
| animation: rainbow 5s linear infinite; | |
| } | |
| .text-outline { | |
| text-shadow: | |
| -1px -1px 0 #000, | |
| 1px -1px 0 #000, | |
| -1px 1px 0 #000, | |
| 1px 1px 0 #000; | |
| } | |
| </style> | |
| </head> | |
| <body class="min-h-screen bg-black"> | |
| <div class="container mx-auto px-4 py-8"> | |
| <!-- Main Message --> | |
| <div class="text-center mb-16"> | |
| <h1 class="text-8xl font-bold rainbow-text text-outline mb-4">I V A N</h1> | |
| <h2 class="text-6xl font-bold rainbow-text text-outline">IF YOU ARE READING THIS</h2> | |
| <h3 class="text-6xl font-bold rainbow-text text-outline">YOU SUCK</h3> | |
| </div> | |
| <!-- Rainbow Boxes --> | |
| <div class="grid grid-cols-1 md:grid-cols-3 gap-8 mb-16"> | |
| <div class="rainbow-border p-8 rounded-lg text-center"> | |
| <i class="fas fa-poo text-6xl rainbow-text mb-4"></i> | |
| <p class="text-2xl rainbow-text font-bold">YOU SMELL</p> | |
| </div> | |
| <div class="rainbow-border p-8 rounded-lg text-center"> | |
| <i class="fas fa-thumbs-down text-6xl rainbow-text mb-4"></i> | |
| <p class="text-2xl rainbow-text font-bold">YOU'RE LAME</p> | |
| </div> | |
| <div class="rainbow-border p-8 rounded-lg text-center"> | |
| <i class="fas fa-skull text-6xl rainbow-text mb-4"></i> | |
| <p class="text-2xl rainbow-text font-bold">YOU'RE DEAD TO US</p> | |
| </div> | |
| </div> | |
| <!-- Spinning Rainbow Wheel --> | |
| <div class="flex justify-center mb-16"> | |
| <div class="w-64 h-64 rounded-full rainbow-border flex items-center justify-center relative overflow-hidden"> | |
| <div class="absolute inset-0 rainbow-bg opacity-50"></div> | |
| <p class="text-2xl font-bold rainbow-text text-outline z-10">IVAN SUCKS</p> | |
| <style> | |
| @keyframes spin { | |
| 0% { transform: rotate(0deg); } | |
| 100% { transform: rotate(360deg); } | |
| } | |
| .spin { | |
| animation: spin 10s linear infinite; | |
| } | |
| </style> | |
| <div class="absolute inset-0 flex items-center justify-center spin"> | |
| <div class="w-full h-1 bg-white"></div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Flashing Warning --> | |
| <div class="rainbow-bg p-8 rounded-lg mb-16 text-center"> | |
| <h3 class="text-4xl font-bold text-white text-outline mb-4"> | |
| <i class="fas fa-exclamation-triangle"></i> WARNING <i class="fas fa-exclamation-triangle"></i> | |
| </h3> | |
| <p class="text-2xl font-bold text-white text-outline"> | |
| IVAN'S EXISTENCE IS A CRIME AGAINST HUMANITY | |
| </p> | |
| </div> | |
| <!-- Discord Button --> | |
| <div class="text-center"> | |
| <button id="discord-btn" class="rainbow-bg text-white text-2xl font-bold py-4 px-8 rounded-full rainbow-shadow hover:scale-110 transition-transform duration-300"> | |
| <i class="fab fa-discord mr-2"></i> JOIN THE FUN SERVER | |
| </button> | |
| </div> | |
| </div> | |
| <script> | |
| document.getElementById('discord-btn').addEventListener('click', function() { | |
| if(confirm("Warning, This discord server has:\n\n- Racism\n- Communism\n- Slavery\n- Bad music\n- The perfect life form Master Leafie\n\nProceed at your own risk!")) { | |
| window.location.href = "https://discord.gg/eu2ZGC4J"; | |
| } | |
| }); | |
| // Make everything rainbow on click | |
| document.body.addEventListener('click', function() { | |
| const elements = document.querySelectorAll('div, p, h1, h2, h3, span, button'); | |
| elements.forEach(el => { | |
| el.classList.add('rainbow-text'); | |
| }); | |
| }); | |
| // Random rainbow effects | |
| setInterval(() => { | |
| const randomElements = document.querySelectorAll('div, p, h1, h2, h3, span, button'); | |
| randomElements.forEach(el => { | |
| if(Math.random() > 0.7) { | |
| el.style.color = `hsl(${Math.random() * 360}, 100%, 50%)`; | |
| } | |
| if(Math.random() > 0.9) { | |
| el.style.transform = `rotate(${Math.random() * 10 - 5}deg)`; | |
| } | |
| }); | |
| }, 1000); | |
| </script> | |
| <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=Whisperwind2001/ivan-sucks" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
| </html> |