Black & White Gothic Óðinn Heavy Blend™ Hooded Sweatshirt

  • Sale
  • Regular price $39.99
Shipping calculated at checkout.


 

Feel the presence of the All-Father with our Black & White Gothic Óðinn Heavy Blend™ Hooded Sweatshirt. Featuring an incredible illustration of Óðinn—God of healing, death, royalty, and more—this one-of-a-kind hoodie will make a powerful impression. Crafted for comfort, it’ll make you feel as legendary as the man it represents. Become part of the legend, and become reborn.

 INTERNATIONAL SHIPPING MAY TAKE 2-4 WEEKS


.: Classic fit
.: 50% Cotton; 50% Polyester (fiber content may vary for different colors)
.: Medium fabric (8.0 oz/yd² (271.25 g/m²))
.: Sewn in label
.: Runs true to size

 


/** * Function to move the background of a website like reptile scales. * * @param {string} elementId - The ID of the element to apply the background movement. * @param {number} speed - The speed of the background movement. * @param {number} scale - The scale of the background movement. */ function moveBackgroundLikeReptileScales(elementId, speed, scale) { const element = document.getElementById(elementId); // Check if the element exists if (!element) { console.error(`Element with ID "${elementId}" not found.`); return; } // Set the initial background position let position = 0; // Function to move the background function moveBackground() { // Calculate the new background position position += speed; // Apply the background position element.style.backgroundPosition = `${position}px ${position}px`; // Apply the background scale element.style.transform = `scale(${scale})`; // Request the next animation frame requestAnimationFrame(moveBackground); } // Start the background movement moveBackground(); } // Usage Example // Move the background of the element with ID "background" like reptile scales moveBackgroundLikeReptileScales("background", 2, 1.2);