@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 400;
  src: local("Raleway"), local("Raleway-Regular"), url(https://danq.me/wp-content/themes/q18/fonts/raleway-v11-latin-regular.woff2) format("woff2"), url(https://danq.me/wp-content/themes/q18/fonts/raleway-v11-latin-regular.woff) format("woff");
  font-display: swap;
}

body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  min-height: 100vh;
  background: black;
  display: flex;
  font-family: 'Raleway', sans-serif;
  color: white;
  justify-content: center;
  align-items: center;
  cursor: url(null.png), none;
}
video {
  max-height: 100vh;
  max-width: 100vw;
}
canvas {
  position: absolute;
  opacity: 0;
  transition: opacity 0.2s;
}
canvas.show {
  opacity: 0.5;
}
#cursor {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: 80% 80%;
  opacity: 1;
  transition: opacity 1.5s;
}
#cursor.active {
  animation: tickle 0.25s ease 2;
}
#cursor.hide {
  opacity: 0;
  transition: opacity 0s;
}
footer {
  position: absolute;
  bottom: 0;
  font-size: 14px;
  padding-top: 28px;
  cursor: auto;
  text-align: center;
}
ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}
li {
  padding: 0 0.5rem 0.2rem;
}
abbr {
  cursor: help;
}
a {
  font-weight: bold;
  color: inherit;
  cursor: pointer;
}
@keyframes tickle {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-40deg);
  }
  100% {
    transform: rotate(0deg);
  }
}