/*
	
	
	
	URL of website: https://www.nohoru.org
	
	last modification: 10-01-2025 [dd-mm-yyyy]
	
	CSS code created by: Luca Gueli
	
	
	
	Copyright notice for content of this website (except Font Awesome icons):
	
	You are not allowed to (re-)use, edit and/or distribute any of the content - such as texts, images, or other media files - without prior permission by the copyright holder.
	
	The copyright holder is: Copyright (c) 2025 n-o-h-o-r-u͡ network. All rights reserved.
	
	
	
	Copyright notice for CSS code of this document:
	
	You can (re-)use, edit and/or distribute the CSS code without any prior permission.
	
	There is no copyright holder.
	
	
	
	Copyright notice for Font Awesome icons:
	
	This website makes use of the free Font Awesome library (https://www.fontawesome.com).
	
	All Font Awesome icons are property of the respective copyright holder(s).
	
	
	
*/



@keyframes sparkle	{
			
			0%	{
				
				transform: translate(-20px, 30px) scale(1);
				opacity: 1;
				
				}
			
			25%	{
				
				transform: translate(20px, -30px) scale(1.2);
				opacity: 0.8;
				
				}
			
			50%	{
				
				transform: translate(-25px, 50px) scale(1.1);
				opacity: 0.6;
				
				}
			
			75%	{
				
				transform: translate(30px, -20px) scale(1.3);
				opacity: 0.7;
				
				}
			
			100%	{
				
				transform: translate(-20px, 30px) scale(1);
				opacity: 0.9;
				
				}
			
			}