[data-bs-theme="dark"] {
  --bs-primary: #70e000;
  --bs-primary-rgb: 112, 224, 0;
  --bs-body-bg: #171d16;
  --bs-body-bg-rgb: 23, 29, 22;
  --navbar-brightness: 25%;
  --particle-effects: "";
  --gist-filter: invert(1);
}

[data-bs-theme="light"] {
  --bs-primary: #4c9800;
  --bs-primary-rgb: 76, 152, 0;
  --bs-body-bg: #efffeb;
  --bs-body-bg-rgb: 200, 242, 192;
  --navbar-brightness: 75%;
  --particle-effects: invert(100%);
}

:root {
  --bs-body-font-family: "Sour Gummy";
  --bs-body-font-weight: 300;
  --bs-body-font-size: 18px;
  --gradient-transparency: 1;
  --bs-link-color: var(--bs-primary);
  --bs-link-hover-color: var(--bs-link-color);
}

/* NO FUCK THIS SHIT!!

I'm not gonna pull the ten million default variables out of the default bootstrap config and paste them here again.
This is bullshit and you know that perfectly well.
If you are suggesting that I should do that and inflate the site only to give a user with js disabled the choice between light and dark mode,
you are probably the same dumb asshole that criticized me because the page is about 1 MB in download
and it's more effective to view it on a VNC terminal rather than render it.
You are high on fucking crack, man. Fuck you and your OSS assuming god complex.
I hate you and your whole kind who punch down on people because they are using "inferior" methods.
Ridiculous.

@media (prefers-color-scheme: light) {
  :root {
    --bs-primary: #4c9800;
    --bs-primary-rgb: 76, 152, 0;
    --bs-body-bg: #efffeb;
    --bs-body-bg-rgb: 200, 242, 192;
    --navbar-brightness: 75%;
    --particle-effects: invert(100%);
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --bs-primary: #70e000;
    --bs-primary-rgb: 112, 224, 0;
    --bs-body-bg: #171d16;
    --bs-body-bg-rgb: 23, 29, 22;
    --navbar-brightness: 25%;
    --particle-effects: "";
    --bs-body-color: white;
    --bs-secondary-color: var(--bs-body-color);
  }
} */

.page {
  padding-top: 2.5rem!important;
}

.btn-outline-primary, .btn-primary {
  --bs-btn-color: var(--bs-primary);
  --bs-btn-border-color: var(--bs-primary);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--bs-primary);
  --bs-btn-hover-border-color: var(--bs-primary);
  --bs-btn-focus-shadow-rgb: 14, 160, 255;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--bs-primary);
  --bs-btn-active-border-color: var(--bs-primary);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: var(--bs-primary);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: var(--bs-primary);
  --bs-gradient: none;
  --bs-btn-bg: var(--bs-primary);
}

.btn-primary {
  --bs-btn-color: #fff;
}

.portfolio-block.block-intro {
  display: flex;
  align-items: center;
  height: 100vh;
  margin-top: 2.5rem;
}

.portfolio-block.block-intro p {
  font-weight: 200;
}

.portfolio-block.block-intro .avatar {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  height: auto;
  width: 300px;
  position: relative;
  margin-bottom: 0px;
}

.avatar-container {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
  filter: drop-shadow(0 0 0.5rem rgba(0, 0, 0, 0.5));
}

.avatar-container::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: 100%;
  border-radius: 50%;
  border-style: ridge;
  border-width: 2px;
  --gradient-transparency: 0.25;
  background: linear-gradient(120deg, rgba(var(--bs-primary-rgb), var(--gradient-transparency)), rgba(65, 187, 239, var(--gradient-transparency)));
}

.bindbox {
  position: absolute;
}

.cursor-hand {
  cursor: grab;
}

.cursor-point {
  cursor: pointer;
}

.navbar {
  backdrop-filter: blur(5px) brightness(var(--navbar-brightness));
  -webkit-backdrop-filter: blur(5px) brightness(var(--navbar-brightness));
  --gradient-transparency: 0.5;
}

.special-skill-item .icon {
  background-color: var(--bs-primary);
}

.gradient {
  background: linear-gradient(120deg, rgba(var(--bs-primary-rgb), var(--gradient-transparency)), rgba(65, 187, 239, var(--gradient-transparency)));
  color: #fff;
}

div.songbox:not(.jsenabled) {
  display: none;
}

.red-dot {
  width: 10px;
  height: 10px;
  margin-right: 5px;
  background-color: red;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 1s ease-in-out infinite;
  display: inline-block;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.thought {
  display: flex;
  background-color: #fff;
  padding: 20px;
  border-radius: 30px;
  min-width: 150px;
  max-width: 220px;
  min-height: 40px;
  margin: 20px;
  position: absolute;
  align-items: center;
  justify-content: center;
  text-align: center;
  right: 100px;
  bottom: 230px;
  z-index: 2;
  color: black;
}

.thought:before, .thought:after {
  content: "";
  background-color: #fff;
  border-radius: 50%;
  display: block;
  position: absolute;
  z-index: -1;
}

.thought:before {
  width: 44px;
  height: 44px;
  top: -12px;
  left: 28px;
  box-shadow: -50px 30px 0 -12px #fff;
}

.thought:after {
  bottom: -10px;
  right: 26px;
  width: 30px;
  height: 30px;
  box-shadow: 40px -34px 0 0 #fff, -28px -6px 0 -2px #fff, -24px 17px 0 -6px #fff, -5px 25px 0 -10px #fff;
}

.noselect {
  user-select: none;
}

#rotatingText {
  white-space-collapse: preserve;
}

#particles {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: fixed;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  z-index: -5;
  opacity: 0.1;
  filter: var(--particle-effects);
}

.card {
  background: none;
}

.special-skill-item > .card-header {
  background-color: var(--bs-primary);
  border-radius: 50%;
}

.special-skill-item > .card-header > div > svg {
  height: 2.5rem;
  width: auto;
  color: white;
}

.special-skill-item > .card-header > div {
  width: fit-content;
  padding: 1rem;
  border-radius: 50%;
  background-color: var(--bs-primary);
}

.card-header {
  display: inline-flex;
  justify-content: center;
}

.policy-container {
  margin-left: 1rem;
  margin-right: 1rem;
}

.bobbing {
  animation: bobbing 2s infinite;
}

@keyframes bobbing {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion) {
  #particles {
    display: none;
  }
}

@media (prefers-reduced-motion) {
  .bobbing {
    animation: none;
  }
}

a[data-bs-toggle="modal"].jsenabled:not([href]) {
  text-decoration-line: underline;
  text-decoration-style: dashed;
  cursor: help;
}

div.card-header-icon, div.vcard-card-item {
  display: flex;
  align-items: center;
}

div.card-header-icon > h5 {
  margin-bottom: 0;
}

div.card-header-icon > svg {
  margin-right: 5px;
  font-size: 20px;
}

div.vcard-card-item > div > svg {
  font-size: 32px;
}

b, strong {
  font-weight: 600;
}

div.card-img-top {
  width: auto;
  height: 30vh;
  background-position-x: center!important;
  background-position-y: center!important;
  background-repeat: no-repeat!important;
  background-size: cover!important;
  background-origin: padding-box!important;
  background-clip: border-box!important;
  transition: .5s ease;
}

.jsrequired:not(.jsenabled) > .theme-switch {
  display: none;
}

.disallowed-cursor {
  cursor: not-allowed!important;
}

.pagination {
  --bs-pagination-active-bg: var(--bs-link-color);
  --bs-pagination-active-border-color: var(--bs-link-color);
}

.blog.datesummary {
  border-width: 1px;
  border-style: solid;
  border-radius: 5px;
  padding: 15px;
}

.blog.container-lg, .blog.container-xl, .blog.container-xxl, div[data-bss-type="blog-loop"] {
  max-width: 75vh;
}

.blog div h3, p:has(img) {
  text-align: center;
}

.blog img {
  border-radius: 5px;
}

.gist {
  font-size: 18px;
  filter: var(--gist-filter);
}

/* nah i'm not an asshole
.gist-meta {
  display: none;
} */

script[type="text/plain"] {
  background-color: #272822;
  color: #fff;
  padding-left: 10px;
  border-radius: 5px;
}

code[class*="language-"] {
  font-size: calc(var(--bs-body-font-size)*0.75)!important;
}

.blog-lang-box {
  padding: 10px;
  margin: 10px;
  border-style: solid;
  border-width: 1px;
  border-radius: 5px;
}

.blog-lang-box > div {
  margin-bottom: 10px;
}

.blog-lang-box h3 {
  margin: 0px;
}

.blog-lang-box svg {
  font-size: 1.75rem;
  margin-left: 10px;
}

.badges {
  margin-bottom: 10px;
}

.badges a {
  margin: 0px!important;
}

.askmeform.jsrequired:not(.jsenabled) {
  display: none;
}

.askmeform.jsenabled {
  display: block;
}

img.author {
  border-radius: 100%;
  width: 80px;
  height: auto;
}

