File size: 19,409 Bytes
1df6696 dfd07d2 1df6696 f14c752 1df6696 f14c752 1df6696 dfd07d2 acc7cbb 1df6696 acc7cbb adb8f0b acc7cbb 1df6696 dfd07d2 acc7cbb 1df6696 aa76f4a 1df6696 aa76f4a 1df6696 ac98720 aa76f4a ac98720 1df6696 ac98720 1df6696 acc7cbb aa76f4a 1f04a4e 1df6696 acc7cbb 1df6696 acc7cbb adb8f0b 1f04a4e dfd07d2 acc7cbb dfd07d2 1df6696 acc7cbb 1f04a4e 1df6696 acc7cbb 1f04a4e 1df6696 acc7cbb 1df6696 acc7cbb 1df6696 acc7cbb f14c752 1df6696 |
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 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 |
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Michael Rude - Motion Designer</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Rubik+Mono+One&family=Press+Start+2P&family=VT323&display=swap">
<style>
@import url('https://fonts.googleapis.com/css2?family=Rubik+Mono+One&family=Press+Start+2P&family=VT323&display=swap');
:root {
--grunge-orange: #ff5e00;
--grunge-green: #00ff88;
--grunge-white: #e0e0e0;
--grunge-black: #0a0a0a;
--grunge-purple: #a855f7;
--grunge-blue: #3b82f6;
}
body {
background-color: var(--grunge-black);
font-family: 'VT323', monospace;
overflow-x: hidden;
}
.grunge-bg {
background:
radial-gradient(circle at 20% 30%, rgba(255, 94, 0, 0.05) 0%, transparent 20%),
radial-gradient(circle at 80% 70%, rgba(0, 255, 136, 0.05) 0%, transparent 20%),
linear-gradient(to bottom, #0a0a0a, #000);
position: relative;
min-height: 100vh;
}
.crumbled-paper {
background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
border: 1px solid rgba(255, 255, 255, 0.1);
box-shadow: 0 0 30px rgba(0, 0, 0, 0.7);
position: relative;
overflow: hidden;
}
.handwritten {
font-family: 'VT323', monospace;
text-transform: uppercase;
letter-spacing: 1px;
}
.corner-damage {
position: absolute;
width: 100%;
height: 100%;
pointer-events: none;
z-index: 10;
}
.corner-damage::after {
content: "";
position: absolute;
bottom: 10px;
right: 10px;
width: 50px;
height: 50px;
border-right: 2px solid var(--grunge-green);
border-bottom: 2px solid var(--grunge-green);
clip-path: polygon(100% 0, 100% 100%, 0 100%);
opacity: 0.5;
}
.grunge-btn {
background: linear-gradient(135deg, var(--grunge-orange), var(--grunge-green));
color: var(--grunge-black);
border: none;
padding: 8px 16px;
font-family: 'VT323', monospace;
font-size: 1.2rem;
text-transform: uppercase;
position: relative;
overflow: hidden;
z-index: 1;
transition: all 0.3s;
cursor: pointer;
}
.grunge-btn:hover {
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.grunge-btn:active {
transform: translateY(0);
box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}
.distorted-border {
position: relative;
overflow: hidden;
border: 1px solid rgba(255,255,255,0.1);
padding: 1rem;
}
.pulse {
animation: pulse 2s infinite;
}
@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.05); }
100% { transform: scale(1); }
}
.skill-level {
position: absolute;
bottom: 0;
left: 0;
height: 4px;
background: linear-gradient(90deg, var(--grunge-orange), var(--grunge-green));
transition: width 0.5s ease;
width: 0;
}
.tool-item:hover .skill-level {
width: 100%;
}
.tool-item {
position: relative;
overflow: hidden;
transition: all 0.3s ease;
}
.montage-tools {
color: var(--grunge-blue);
}
.special-tools {
color: var(--grunge-purple);
}
.three-d-tools {
color: var(--grunge-green);
}
.profile-image-container {
width: 120px;
height: 120px;
border-radius: 50%;
border: 3px solid var(--grunge-orange);
overflow: hidden;
position: relative;
box-shadow: 0 0 20px rgba(255, 94, 0, 0.3);
transition: all 0.3s ease;
}
.profile-image {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
}
.profile-image-container:hover {
border-color: var(--grunge-green);
transform: rotate(5deg);
}
</style>
</head>
<body class="grunge-bg">
<!-- Main container -->
<div class="container mx-auto px-4 py-12 max-w-4xl relative">
<!-- Main paper -->
<div class="crumbled-paper bg-black p-8 md:p-12 relative" id="mainPaper">
<div class="corner-damage"></div>
<!-- Header -->
<header class="mb-12 relative">
<div class="flex justify-between items-start">
<div>
<h1 class="text-5xl md:text-7xl font-bold mb-2 text-green-500 handwritten">MICHAEL RUDE</h1>
<h2 class="text-2xl md:text-3xl text-orange-500 handwritten">MOTION DESIGNER / VISUAL ARTIST</h2>
</div>
<div class="profile-image-container">
<img src="https://i.ibb.co/x8SFNdzN/Chat-GPT-Image-26-2025-00-08-00.webp"
alt="Michael Rude"
class="profile-image">
</div>
</div>
</header>
<!-- Contact info -->
<div class="grid grid-cols-1 md:grid-cols-2 gap-8 mb-12">
<div class="distorted-border">
<h3 class="text-xl text-white handwritten mb-4 border-b border-gray-700 pb-2">CONTACT</h3>
<ul class="space-y-2">
<li class="text-green-500 flex items-center">
<span class="text-orange-500 mr-2">✉</span> [email protected]
</li>
<li class="text-green-500 flex items-center">
<span class="text-orange-500 mr-2">☠</span> @Windmonk
</li>
<li class="text-green-500 flex items-center">
<span class="text-orange-500 mr-2">⚡</span> windmonk.design
</li>
<li class="text-green-500 flex items-center">
<span class="text-orange-500 mr-2">📍</span> Voronezh, Russia
</li>
</ul>
</div>
<div class="distorted-border">
<h3 class="text-xl text-white handwritten mb-4 border-b border-gray-700 pb-2">SKILLS</h3>
<div class="flex flex-wrap gap-2">
<span class="bg-blue-500 text-black px-2 py-1 text-xs">Motion Graphics</span>
<span class="bg-green-500 text-black px-2 py-1 text-xs">3D Animation</span>
<span class="bg-purple-500 text-black px-2 py-1 text-xs">Visual Effects</span>
<span class="bg-blue-500 text-black px-2 py-1 text-xs">Compositing</span>
<span class="bg-green-500 text-black px-2 py-1 text-xs">Video Editing</span>
<span class="bg-purple-500 text-black px-2 py-1 text-xs">Color Grading</span>
<span class="bg-blue-500 text-black px-2 py-1 text-xs">Typography</span>
<span class="bg-green-500 text-black px-2 py-1 text-xs">Generative Art</span>
<span class="bg-purple-500 text-black px-2 py-1 text-xs">Creative Direction</span>
<span class="bg-blue-500 text-black px-2 py-1 text-xs">Storyboarding</span>
</div>
</div>
</div>
<!-- Experience -->
<div class="mb-12">
<h3 class="text-xl text-white handwritten mb-6 border-b border-gray-700 pb-2">EXPERIENCE</h3>
<div class="space-y-6">
<div class="border-l-2 border-orange-500 pl-4 relative">
<div class="absolute -left-2 top-2 w-3 h-3 bg-orange-500 rounded-full pulse"></div>
<h4 class="text-green-500 text-lg handwritten">Freelance Motion Designer</h4>
<div class="text-white text-sm mb-1">Various Clients | 2019 - 2021</div>
<p class="text-gray-400">Created motion graphics and visual effects for diverse clients including advertising agencies, music labels and independent filmmakers.</p>
</div>
<div class="border-l-2 border-green-500 pl-4 relative">
<div class="absolute -left-2 top-2 w-3 h-3 bg-green-500 rounded-full pulse"></div>
<h4 class="text-orange-500 text-lg handwritten">Video Editor</h4>
<div class="text-white text-sm mb-1">Vera Realty | 2021 - 2022</div>
<p class="text-gray-400">Produced high-quality real estate videos with cinematic effects, color grading and motion graphics to showcase properties.</p>
</div>
<div class="border-l-2 border-orange-500 pl-4 relative">
<div class="absolute -left-2 top-2 w-3 h-3 bg-orange-500 rounded-full pulse"></div>
<h4 class="text-white text-lg handwritten">Editing Director</h4>
<div class="text-white text-sm mb-1">Lispako | 2023</div>
<p class="text-gray-400">Led post-production team, overseeing editing workflows, visual effects implementation and final delivery standards.</p>
</div>
<div class="border-l-2 border-green-500 pl-4 relative">
<div class="absolute -left-2 top-2 w-3 h-3 bg-green-500 rounded-full pulse"></div>
<h4 class="text-orange-500 text-lg handwritten">Motion Designer</h4>
<div class="text-white text-sm mb-1">Fuckads | 2024 - Present</div>
<p class="text-gray-400">Creating cutting-edge motion graphics and visual effects for digital advertising campaigns with bold, unconventional style.</p>
</div>
</div>
</div>
<!-- Projects -->
<div class="mb-12">
<h3 class="text-xl text-white handwritten mb-6 border-b border-gray-700 pb-2">SELECTED WORK</h3>
<div class="grid grid-cols-1 md:grid-cols-2 gap-4">
<div class="border border-gray-700 p-3 hover:border-orange-500 transition cursor-pointer" onclick="window.open('https://www.playbook.com/s/windmonkey/4m5jJKB1WWDUR32oLth6h2Xx?assetToken=szhF1CLCqgDvGQKzzd1Aknvy', '_blank')">
<h4 class="text-green-500 handwritten">"Ferrari Concept" Commercial</h4>
<p class="text-gray-400 text-sm">AI-powered cinematic journey celebrating Ferrari's legacy - not just a car brand, but a revolution in motion, style and engineering excellence.</p>
</div>
<div class="border border-gray-700 p-3 hover:border-green-500 transition cursor-pointer" onclick="window.open('https://www.playbook.com/s/windmonkey/dnRT2jyMroYGVHzatGVEof9A?assetToken=JyFDc7RiubYWa2c4Lnr5cuEL', '_blank')">
<h4 class="text-orange-500 handwritten">"Markul - Abnormal" Visual</h4>
<p class="text-gray-400 text-sm">Experimental reinterpretation of Markul's lyrical masterpiece, blending original footage with glitch aesthetics and chromatic distortions that mirror the song's emotional intensity.</p>
</div>
<div class="border border-gray-700 p-3 hover:border-white transition cursor-pointer" onclick="window.open('https://www.playbook.com/s/windmonkey/NSfDdUMxQ7RfTuTbQn4Zo7Mr?assetToken=H36ujBnMrDTnGN1v9YCmWKTz', '_blank')">
<h4 class="text-green-500 handwritten">Retail CRM</h4>
<p class="text-gray-400 text-sm">Slick, fast-paced motion graphic showcasing a CRM platform in action — from sales tracking to marketing automation. Designed with bold typography, rhythmic cuts, and immersive SFX to visualize the heartbeat of retail efficiency.</p>
</div>
<div class="border border-gray-700 p-3 hover:border-orange-500 transition cursor-pointer" onclick="window.open('https://www.playbook.com/s/windmonkey/GcNLnkrqVR5F82URgbhnAMkG?assetToken=Q9D1nketRRXzuNieUY7dhvqb', '_blank')">
<h4 class="text-white handwritten">"AMI SKINCARE" 3D COMMERCIAL</h4>
<p class="text-gray-400 text-sm">3D motion spot crafted for AMI — blending elegance and realism to highlight the product’s texture, absorption, and luxury appeal. Fluid camera moves, soft lighting, and close-up detail shots evoke the sensation of care and premium skincare innovation.</p>
</div>
</div>
</div>
<!-- Tools -->
<div class="mb-12">
<h3 class="text-xl text-white handwritten mb-6 border-b border-gray-700 pb-2">TOOLS & SKILL LEVEL</h3>
<div class="grid grid-cols-2 md:grid-cols-4 gap-4 text-center">
<!-- Motion Graphics Tools -->
<div class="tool-item p-3 border border-gray-700 hover:border-blue-500 transition" data-s skill="95">
<div class="montage-tools text-2xl mb-1">Ps</div>
<div class="text-white text-xs">Photoshop</div>
<div class="skill-level" style="width: 0%;"></div>
</div>
<div class="tool-item p-3 border border-gray-700 hover:border-blue-500 transition" data-skill="90">
<div class="montage-tools text-2xl mb-1">AE</div>
<div class="text-white text-xs">After Effects</div>
<div class="skill-level" style="width: 0%;"></div>
</div>
<!-- 3D Animation Tools -->
<div class="tool-item p-3 border border-gray-700 hover:border-green-500 transition" data-skill="88">
<div class="three-d-tools text-2xl mb-1">3Ds</div>
<div class="text-white text-xs">3Ds Max</div>
<div class="skill-level" style="width: 0%;"></div>
</div>
<div class="tool-item p-3 border border-gray-700 hover:border-green-500 transition" data-skill="85">
<div class="three-d-tools text-2xl mb-1">BL</div>
<div class="text-white text-xs">Blender</div>
<div class="skill-level" style="width: 0%;"></div>
</div>
<!-- VFX Tools -->
<div class="tool-item p-3 border border-gray-700 hover:border-purple-500 transition" data-skill="92">
<div class="special-tools text-2xl mb-1">NK</div>
<div class="text-white text-xs">Nuke</div>
<div class="skill-level" style="width: 0%;"></div>
</div>
<div class="tool-item p-3 border border-gray-700 hover:border-purple-500 transition" data-skill="85">
<div class="special-tools text-2xl mb-1">FCPX</div>
<div class="text-white text-xs">Final Cut</div>
<div class="skill-level" style="width: 0%;"></div>
</div>
<!-- Editing Tools -->
<div class="tool-item p-3 border border-gray-700 hover:border-white transition" data-skill="90">
<div class="text-white text-2xl mb-1">PR</div>
<div class="text-white text-xs">Premiere Pro</div>
<div class="skill-level" style="width: 0%;"></div>
</div>
<div class="tool-item p-3 border border-gray-700 hover:border-white transition" data-skill="88">
<div class="text-white text-2xl mb-1">DR</div>
<div class="text-white text-xs">DaVinci Resolve</div>
<div class="skill-level" style="width: 0%;"></div>
</div>
</div>
</div>
<!-- Contact button -->
<div class="text-center mb-6">
<button class="grunge-btn" id="contactButton" onclick="window.open('https://t.me/Windmonk', '_blank')">
CONTACT FOR PROJECTS
</button>
</div>
<!-- Footer -->
<footer class="text-center text-gray-500 text-xs border-t border-gray-700 pt-4">
<p>© 2024 MICHAEL RUDE - MOTION DESIGN</p>
<p class="mt-1">All visuals created with destructive passion</p>
</footer>
</div>
</div>
<script>
// Initialize skill levels on hover
document.querySelectorAll('.tool-item').forEach(item => {
const skill = item.getAttribute('data-skill');
const levelBar = item.querySelector('.skill-level');
item.addEventListener('mouseenter', () => {
levelBar.style.width = skill + '%';
});
item.addEventListener('mouseleave', () => {
levelBar.style.width = '0%';
});
});
</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=Windmonk/cv" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |