/*
 Theme Name:   Sprint Child Theme
 Theme URI:    https://sprint.ancorathemes.com/
 Description:  Sprint Child Theme
 Author:       AncoraThemes
 Author URI:   https://ancorathemes.com/
 Template:     sprint
 Version:      1.0.0
 Tested up to: 6.6
 Requires at least: 5.0
 Requires PHP: 7.0
 License: GNU General Public License v2 or later
 License URI: http://www.gnu.org/licenses/gpl-2.0.html
 Tags: blog, e-commerce, portfolio, grid-layout, one-column, two-columns, three-columns, four-columns, left-sidebar, right-sidebar, custom-background, custom-colors, custom-header, custom-logo, custom-menu, editor-style, featured-image-header, featured-images, flexible-header, footer-widgets, full-width-template, microformats, post-formats, sticky-post, theme-options, threaded-comments, translation-ready, block-styles, wide-blocks
 Text Domain:  sprint
*/
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url('https://goyameble.com/wp-content/themes/lunna/skins/default/images/noise.png'); 
  background-size: 100px 100px;
  opacity: 0.05;
  pointer-events: none;
  z-index: 9999;
  animation: moveNoise 1s infinite linear;
}

@keyframes moveNoise {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-5px, 3px); }
  50%  { transform: translate(3px, -5px); }
  75%  { transform: translate(-2px, 2px); }
  100% { transform: translate(0, 0); }
}