/*
Theme Name: Unofficial
Theme URI: https://wordpress.org/themes/twentytwentyfour/
Template: twentytwentyfour
Author: the WordPress team
Author URI: https://wordpress.org
Description: Twenty Twenty-Four is designed to be flexible, versatile and applicable to any website. Its collection of templates and patterns tailor to different needs, such as presenting a business, blogging and writing or showcasing work. A multitude of possibilities open up with just a few adjustments to color and typography. Twenty Twenty-Four comes with style variations and full page designs to help speed up the site building process, is fully compatible with the site editor, and takes advantage of new design tools introduced in WordPress 6.4.
Tags: one-column,custom-colors,custom-menu,custom-logo,editor-style,featured-images,full-site-editing,block-patterns,rtl-language-support,sticky-post,threaded-comments,translation-ready,wide-blocks,block-styles,style-variations,accessibility-ready,blog,portfolio,news
Version: 1.0.1705118584
Updated: 2024-01-13 04:03:04

*/

.bg-grid-dark {
	background:
		repeating-linear-gradient(90deg, transparent, transparent 60px, #ffffff20 60px, #ffffff20 61px),
		repeating-linear-gradient(180deg, transparent, transparent 60px, #ffffff20 60px, #ffffff20 61px),
		repeating-linear-gradient(transparent 0, transparent 100%);
}

.bg-grid-light {
	background:
		repeating-linear-gradient(90deg, transparent, transparent 60px, #1B0E0F20 60px, #1B0E0F20 61px),
		repeating-linear-gradient(180deg, transparent, transparent 60px, #1B0E0F20 60px, #1B0E0F20 61px),
		repeating-linear-gradient(transparent 0, transparent 100%);
}

.bg-radial-fade-dark {
    background: radial-gradient(circle, rgba(15,15,8,0) 0%, rgba(15,15,8,1) 60%);
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.bg-radial-fade-light {
    background: radial-gradient(circle, rgba(250,247,238,0) 0%, rgba(250,247,238,1) 60%);
}

.bg-radial-fade-blue {
    background: radial-gradient(circle, rgba(48,87,249,0) 0%, rgba(48,87,249,1) 60%);
}

.animate-float-1 {
    animation: animate-float 4s ease 0s infinite alternate forwards;
}

.animate-float-2 {
    animation: animate-float 4s ease 0s infinite alternate forwards;
    animation-delay: 1s;
}

.animate-float-3 {
    animation: animate-float 4s ease 0s infinite alternate forwards;
    animation-delay: 3s;
}

@keyframes animate-float {
	from { transform: rotate(0deg) translateX(0) rotate(0deg); }
    to   { transform: rotate(360deg) translateX(6px) rotate(-360deg); }
}

.animate-pulse-1 {
    animation: animate-pulse-1 3s ease 0s infinite alternate forwards;
}

@keyframes animate-pulse-1 {
	0% {
		opacity: 50%
	}
    
	100% {
        opacity: 100%;
	}
}

::-moz-selection { /* Code for Firefox */
    color: #3057F9;
    background: #FFC100;
}

::selection {
    color: #3057F9;
    background: #FFC100;
}