@charset "UTF-8";
@import url('/static/stylesheets/colors.css');
@import url('/static/stylesheets/scrollbar.css');
@import url('/static/stylesheets/type.css');
@import url('/static/stylesheets/tailwind.css');

:root {
  --cursor-size: 32;
  --color-100: #F2F2F2;
  --color-200: #98ad4c;
  --color-300: #809240;
  --color-400: #687734;
  --color-500: #505b28;
  --color-600: #38401c;
  --color-background: #170f0a;
  
  --color-primary: #9657b6;
  --color-secondary: #dac4e5;
}

html, body {
  height: 100vh;
  background-color: var(--color-background);
}

body {
  opacity: 0;
  animation: fadeIn ease 0.75s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

.nav-item:hover, a.nav-item:hover, li.nav-item:hover {
  cursor: pointer;
  background-color: var(--color-300);
}

li.nav-item > a {
  width: 100%;
  height: 100%;
}

a.link {
  color: var(--color-secondary);
  text-decoration: underline dotted;
}

a.link:hover {
  cursor: pointer;
  text-decoration: underline wavy;
}

a.link > button {
  text-decoration: underline dotted;
}

a.link > button:hover {
  background-color: var(--color-300);
  text-decoration: underline wavy;
}

a.card > div {
  transition: transform ease 0.15s;
}

a.card > div:hover {
  transform: scale(1.05);
}

.fade {
  opacity: 0;
  transform: translate(0, 10vh);
  transition: all ease 0.7s !important;

}

.fadeIn {
  opacity: 1;
  transform: translate(0, 0);
}