/*
Theme Name: carski-basic2
Theme URI: 
Author: Emil Car @ carski.pl
Author URI: 
Description: 
Requires at least: 6.9
Tested up to: 6.9
Requires PHP: 5.7
Version: 
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Template: frost
Text Domain: carski-basic2
Tags: 
*/
body{
    background:#1c1e24;
}

header {
    position: sticky;
    top: 20px;
    z-index:999;
}

@keyframes spin {
  to {
    transform: rotate(1turn);
  }
}

.btn-normal {
  position: relative;
  display: inline-block;
  overflow:hidden;
  border-radius:15px;
  padding:5px;
  transition:scale 1s ease-in;
}


.btn-normal a {
  position: relative;
  z-index: 1;
  padding: 0.5em 1.25em;
  border-radius: 15px;
  background: #d824f0;
  border:0;
  transition:background-color .3s;
}

.btn-normal.outline a{
    background:#1c1e24;
}

.btn-normal:hover a{
    background:#111111;
}

/* ramka */
.btn-normal::before {
  content: "";
  position: absolute;
  inset: -100px;
  border-radius: 18px;

  background: conic-gradient(
    #d824f0,
    #63a2ff,
    #d824f0
  );

  animation: spin 3s linear infinite;
  animation-play-state:paused;
  z-index: 0;
}

.btn-normal:hover::before {
    animation-play-state: running;
}


.bg-gradient-shadow{
    position:relative;
}
.front-projects ul li:first-child{
    z-index:2;
}
.front-projects ul li:nth-child(2){
    z-index:0;
    opacity:0.5;
    transform:scale(0.9);
}

