@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

@font-face {
  src: url(/fonts/Spirit.woff2);
  font-family: 'spirits';
  font-display: swap;
}

@font-face {
  src: url(/fonts/angel.woff2);
  font-family: 'angel';
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  cursor: url(/media/cursor/cursorhover.png), progress;
}

* {
  cursor: url(/media/cursor/cursorhover.png), progress !important;
}


body {
  background-image: url(/media/backgrounds/pinkcheck.png) ! important;
  background-size: 40px ! important;
  font-family: 'angel';
  font-size: 12px;
  color: #8d7c76;
  display: flex;
  height: 100vh;
  margin: auto;
  align-items: center;
  justify-content: center;
  position: relative;
}

a {
  text-decoration: none;
  color: #545454;
  transition: .1s
}

a:link {
  color: #8d7c76;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: #8d7c76;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: #edaecb;
  background-color: transparent;
  text-decoration: dotted underline;
  font-style: italic;
}

a:active {
  color: #8d7c76;
  background-color: transparent;
  text-decoration: underline;
}

h3 {
  margin-bottom: 6px;
}

::selection {
  background-color: #feeef6;
  color: #616161;
}

:root {
  --mac-white: #ffffff;
  --mac-border: #dcdcdc;
}

mark {
  background-color: #ffe9f2;
  color: #8d7c76;
  padding: 0 4px;
  border-radius: 10px;
}

#lace {
  background-image: url(https://file.garden/aS-t0Aj4K3mdDujK/kkul/graphics/lacey.png);
  background-size: auto 100%;
  width: 100%;
  height: 20px;
  filter: drop-shadow(0px 1px #D1B9B3);
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 9999;
}

#lace-bottom {
  background-image: url(https://file.garden/aS-t0Aj4K3mdDujK/kkul/graphics/lacey.png);
  background-size: auto 100%;
  width: 100%;
  height: 20px;
  filter: drop-shadow(0px 1px #D1B9B3);
  position: fixed;
  bottom: 0px;
  left: 0px;
  transform: rotate(180deg);
  z-index: 9999;
}

.blink {
  animation: blink 2s infinite;
  display: inline;
}

@keyframes blink {
  0% {
    opacity: 1;
  }

  49% {
    opacity: 1;
  }

  60% {
    opacity: 0;
  }

  99% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes smoothFade {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.zoom {
  transition: transform .2s;
}

.zoom:hover {
  -ms-transform: scale(1.15);
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
}