@font-face {
    font-family: 'Saira Condensed';
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/SairaCondensed-Regular.woff2) format('woff2');
}
@font-face {
  font-family: 'Play';
  font-weight: 400;
  src: url(../fonts/Play-Regular.woff2) format('woff2');
}
@font-face {
  font-family: 'Impact';
  font-weight: 400;
  src: url(../fonts/Impact.woff2) format('woff2');
}
@font-face {
  font-family: 'DancingScript';
  font-weight: 900;
  src: url(../fonts/DancingScript-VariableFont_wght.woff2) format('woff2');
}


:root {
    --ff: "Play", sans-serif;
    --clr-bg-dark: hsl(240, 4%, 10%);
    --clr-bg-light: hsl(120, 4%, 27%);
    --clr-bg-txt: hsl(0, 0%, 33%);
    --clr-font: hsl(13, 3%, 70%);
    --clr-contrast: hsl(133, 71%, 33%);
    --clr-alt: hsl(82, 80%, 12%);
    --box-rad: .5rem;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

img {
  display: block;
  max-width: 100%;
  height: 100%;
}

body {
  background-color: var(--clr-alt);
  background-color: #000000;
  /*background-image: linear-gradient(180deg, #000 0%, var(--clr-contrast) 100%);*/
  min-height: 100vh;
  color: var(--clr-font);
  font-family: var(--ff);
  cursor: url(../img/Crosshair.svg), auto;
}

a {
  text-decoration: none;
  color: var(--ff);
  cursor: url(../img/Hitmarker.svg), auto;
}

.color-white {
  color: white;
}
.color-green {
  color: var(--clr-contrast);
}

.fnt-script {
  font-family: 'DancingScript';
}

.fnt-meme {
  font-family: 'Impact';
  font-size: 2rem;
}

.fnt-big {
  font-size: 5rem;
}

.fnt-glow {
  text-shadow: rgba(255, 255, 255, 0.452) 0px 19px 38px, rgba(255, 255, 255, 0.445) 0px 15px 12px;
}

.fnt-shadow {
  text-shadow: rgba(19, 19, 19, 0.452) 0px 19px 38px, rgba(22, 22, 22, 0.445) 0px 15px 12px;
}

.pointer {
  
}

.txt-center {
  text-align: center;
}

.uppercase {
  text-transform: uppercase;
}

.ahshit-meme {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  padding-left: min(50px, 8%);
}

.by {
  font-size: 5rem;
  padding-bottom: 15px;
}

/* SCROLLBAR */
body::-webkit-scrollbar {
  width: .5rem;
  height: .5rem;
}
body::-webkit-scrollbar-track {
  display: none;
}
body::-webkit-scrollbar-thumb {
  background: hsl(13, 3%, 70%);
  border-radius: 100vw;
}
body::-webkit-scrollbar-thumb:hover {
  background: hsl(13, 3%, 60%);
}
body::-webkit-scrollbar-thumb:active {
  background: hsl(13, 3%, 30%);
}
@supports (scrollbar-color: gray black) {
  * {
    scrollbar-color: var(--clr-font) var(--clr-bg);
    scrollbar-width: thin;
  }
}

.spacer-small {
  height: 50px;
  width: 100%;  
}

.spacer-big {
  height: 100px;
  width: 100%;  
}

.container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container .box {
  position: relative;
  width: 320px;
  height: 400px;
  background: #444;
  margin: 0 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--clr-contrast) 25%, #444 25%, #444 50%, var(--clr-contrast) 50%, var(--clr-contrast) 75%, #444 75%, #444 100%);
  background-size: 40px 40px;
  filter: grayscale(1);
  animation: animateBg 0.5s linear infinite;
  animation-play-state: paused;
  transition: filter 1s;
  display: flex;
  justify-content: center;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

.container .box:hover {
  animation-play-state: running;
  filter: grayscale(0);
}
@keyframes animateBg {
  0% {
      background-position: 0;
  }
  100% {
      background-position: -40px;
  }
}
.container .box img {
  position: absolute;
  bottom: 0;
  left: 10px;
  height: 80%;
  transition: height 0.5s;
  max-width: 150%;
}
.container .box:hover img {
  height: 111%;
}

.hr-xs {
  width: 20rem;
  height: 8px;
  border-width: 8px;
  border-color: var(--clr-bg-light);
  background: var(--clr-bg-light);
  border-radius: var(--box-rad);
  margin: auto;
}

.footer {
  position: fixed;
  bottom: 0px;
}

details:hover {
  cursor: pointer;
}

table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  table-layout: auto;
}
th,
td {
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}
th {
  text-align: left;
}
thead th {
  background-color: var(--clr-contrast);
}
tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
tbody td {
  position: relative;
}
tbody td:hover:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -9999px;
  bottom: -9999px;
  background-color: rgba(255, 255, 255, 0.15);
  z-index: -1;
}