@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: #f20530;
  --color-300: #cc0428;
  --color-400: #a50321;
  --color-500: #7f0319;
  --color-600: #580212;
  --color-background: #1f0106;
  --color-primary: #4afb6a;
  --color-secondary: #aafdb9;
}

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-primary);
  text-decoration: underline dotted;
}

a.link:hover {
  color: var(--color-secondary);
  cursor: pointer;
  text-decoration: underline wavy;
}