/*
Theme Name: AxuryCode
Theme URI: -
Author: -
Author URI: -
Description: -
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: General
Text Domain: -

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/
body {
  --sb-track-color: #232e33;
  --sb-thumb-color: #07ee3a;
  --text-color: #07ee3a;
  --bg-color:#232e33;
  --sb-size: 3px;
}

body::-webkit-scrollbar {
  width: var(--sb-size);
}

body::-webkit-scrollbar-track {
  background: var(--sb-track-color);
  border-radius: 3px;
}

body::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
  border-radius: 3px;
}

@supports not selector(::-webkit-scrollbar) {
  body {
    scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
  }
}
aside {
  --sb-track-color: #232e33;
  --sb-thumb-color: #07ee3a;
  --sb-size: 3px;
}

aside::-webkit-scrollbar {
  width: var(--sb-size);
}

aside::-webkit-scrollbar-track {
  background: var(--sb-track-color);
  border-radius: 3px;
}

aside::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
  border-radius: 3px;
}

@supports not selector(::-webkit-scrollbar) {
  aside {
    scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
  }
}
nav .nav-links {
  display: flex;
  justify-content: space-between;
}
nav .nav-links a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 600;
  padding: 10px 15px;
  border: 2px solid var(--text-color);
  border-radius: 5px;
  transition: all 0.3s ease;
}
nav .nav-links a:hover {
  background: var(--text-color);
  color: var(--bg-color);
}

@property --rotate {
  syntax: "<angle>";
  initial-value: 132deg;
  inherits: false;
}
:root {
  --card-height: 320px;
  --card-width: calc(var(--card-height) / 1.5);
}

aside ul {
  position: relative;
}
aside ul:before {
  content: "";
  position: absolute;
  top: 0;
  left: -12px;
  width: 5px;
  height: 100%;
  background-image: linear-gradient(var(--rotate), #07ee3a, #079125 56%, #034712);
  border-radius: 4px 4px 4px 4px;
  animation: spin 4.5s linear infinite;
  z-index: 0;
}

.card-home {
  padding: 1px;
  position: relative;
  border-radius: 6px;
}
.card-home a {
  height: 100%;
  background-color: #000;
  transition: all 200ms;
  position: relative;
  z-index: 1;
  padding-top: 30px;
}
.card-home a:hover {
  background-color: #07ee3a;
  color: #000;
}
.card-home a:hover p {
  color: #000;
}

.card-home:hover:before,
.card-home:hover:after {
  animation: none;
  opacity: 0;
}

.card-home::before {
  content: "";
  width: 104%;
  height: 102%;
  border-radius: 8px;
  background-image: linear-gradient(var(--rotate), #07ee3a, #079125 43%, #034712);
  position: absolute;
  z-index: 0;
  top: -1%;
  left: -2%;
  animation: spin 2.5s linear infinite;
}

.card-home::after {
  position: absolute;
  content: "";
  top: calc(var(--card-height) / 6);
  left: 0;
  right: 0;
  z-index: 0;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  transform: scale(0.8);
  filter: blur(calc(var(--card-height) / 6));
  background-image: linear-gradient(var(--rotate), #07ee3a, #079125 43%, #034712);
  opacity: 1;
  transition: opacity 0.5s;
  animation: spin 2.5s linear infinite;
}

@keyframes spin {
  0% {
    --rotate: 0deg;
  }
  100% {
    --rotate: 360deg;
  }
}
.animate-spin {
  animation: spin2 2.5s linear infinite;
}
@keyframes spin2 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.content-area p {
  margin-top: 4px !important;
  margin-bottom: 4px !important;
}
.content-area p img {
  margin-top: 12px !important;
  margin-bottom: 12px !important;
}

.post-navigation {
  margin-top: 56px !important;
  margin-bottom: 24px !important;
}/*# sourceMappingURL=style.css.map */