@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/modal.css');



:root {
  --cursor-size: 32;
  --color-100: #f7f4ed;
  --color-200: #D9C8A9;
  --color-300: #A68A68;
  --color-400: #735D49;
  --color-500: #40312C;
  --color-600: #291f1c;
  --color-primary: #8C251C;
  --color-secondary: #aebfd3;
}

html, body {
  height: 100vh;
  background-color: var(--color-400);
}

body {
  opacity: 0;
  animation: fadeIn ease 2.333s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes zoom {
  0% { scale: 1; }
  100% { scale: 1.1; }
}

a.link {
  text-decoration: underline;
}

a.link:hover {
  color: var(--color-secondary);
  text-decoration: underline wavy;
}

button:hover, a.btn:hover {
  color: var(--color-secondary);
  text-decoration: underline wavy;
  filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15));
  animation: zoom ease 0.25s forwards;
}

a > div.card:hover {
  color: var(--color-secondary);
  text-decoration: underline wavy;
  filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15));
  animation: zoom ease 0.25s forwards;
}

a > img:hover {
  cursor: pointer;
  filter: opacity(70%) brightness(105%);
}

img.gallery-item:hover {
  cursor: zoom-in;
  filter: opacity(70%) brightness(105%);
}
