@charset "UTF-8";
@import url("/content/style/fills.css");
@import url("/content/style/variables.css");

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

html, body {
  height: 100vh;

  opacity: 0;
  animation: fadeIn ease var(--page-fade-speed);
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

body {
  background-color: var(--color-2);
  background-image:  radial-gradient(var(--color-1) 0.75px, transparent 0.75px), radial-gradient(var(--color-1) 0.75px, var(--color-2) 0.75px);
  background-size: 20px 20px;
  background-position: 0 0, 10px 10px;
}

a.link {
  filter: brightness(95%);
  text-decoration: underline dashed;
}

button:hover, a.link:hover {
  filter: brightness(125%);
  text-decoration: underline wavy;
}

a > img:hover {
  filter: opacity(70%) brightness(105%);
}

.ft-img {
  filter: drop-shadow(4px 4px var(--color-1));
}

svg.icon {
  width: 26px;
  height: 26px;
  color: var(--color-2);
  fill: var(--color-2);
}

.fade {
  opacity: 0;
  transform: translate(0, 10vh);
  transition: all ease 0.5s !important;

}

.fadeIn {
  opacity: 1;
  transform: translate(0, 0);
}