@font-face {
  font-family: 'Roboto Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/RobotoMono-Regular-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Roboto Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/RobotoMono-Regular-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}



canvas {
  position: absolute;
  z-index: 20;
  pointer-events: none;
}

html {
  height: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at center, #122216 0%, #060907 100%);
  text-align: center;
  font-size: 1em;
  font-family: 'Roboto Mono', monospace;
  font-weight: 400;
  cursor: default;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  -webkit-user-select: none;
}

a {
  color: inherit;
  text-decoration: none;
  outline: 0;
  cursor: pointer;
}



.boxcontainer {
  height: auto;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.box {
  z-index: 10;
  height: auto;
  width: 300px;
  max-width: 95%;
  display: inline-block;
  position: relative;
  text-align: center;
  animation: slide 0.8s ease;
  animation-fill-mode: forwards;
}

img {
  height: 128px;
  width: auto;
  opacity: 0.5;
  filter:
    drop-shadow(0 0 8px rgba(0, 0, 0, 0.8))
    drop-shadow(0 4px 16px rgba(0, 0, 0, 1))
    drop-shadow(0 8px 32px rgba(0, 0, 0, 0.9));
}

.title {
  line-height: 1em;
  margin: 10px 0;
  color: rgba(255, 255, 255, 0.75);
  width: auto;
  height: auto;
  display: block;
  cursor: pointer;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05),
    0 -1px 0 rgba(0, 0, 0, 0.9),
    0 3px 8px rgba(0, 0, 0, 1),
    0 6px 24px rgba(0, 0, 0, 0.9);
}

.desc {
  line-height: 25px;
  margin: 10px 0;
  color: rgba(128, 128, 128, 0.7);
  transition: all 0.4s ease;
  animation-fill-mode: forwards;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.03),
    0 -1px 0 rgba(0, 0, 0, 0.8),
    0 3px 10px rgba(0, 0, 0, 1),
    0 6px 20px rgba(0, 0, 0, 0.85);
}

.link {
  line-height: 25px;
  margin: 10px 0;
  color: rgba(128, 128, 128, 0.7);
  transition: filter 0.2s ease, transform 0.4s ease;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.03),
    0 -1px 0 rgba(0, 0, 0, 0.8),
    0 3px 10px rgba(0, 0, 0, 1),
    0 6px 20px rgba(0, 0, 0, 0.85);
}

.link:hover {
  filter: brightness(.6);
}

.linkcont {
  margin: 0 auto;
  width: auto;
  display: inline-block;
  position: relative;
  margin: 0;
  transition: filter 0.2s ease, transform 0.4s ease;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;

}

.linksquare {
  height: 50px;
  width: 50px;
  display: inline-block;
  position: relative;
  margin: 0;
  transition: all 0.2s ease;
}

.linksquare:hover {
  filter: brightness(.6);
}

svg {
  height: 25px;
  width: 25px;
  fill: rgba(127, 127, 127, 0.55);
  padding: 10px;
  filter:
    drop-shadow(0 2px 4px rgba(0, 0, 0, 0.95))
    drop-shadow(0 4px 12px rgba(0, 0, 0, 0.85));
}

.clickable {
  pointer-events: none
}

.unclickable {
  pointer-events: auto;
  user-select: none;
  -moz-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
}



@keyframes slide {
  0% {
    transform: translate(0, 2.5em);
    opacity: 0;
  }

  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}

.site-footer {
  position: fixed;
  bottom: 20px;
  left: 0;
  right: 0;
  z-index: 10;
  text-align: center;
  font-size: 0.75em;
  color: #404040;
}

.site-footer a {
  color: #404040;
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: #808080;
}

#hud {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 30;
  font-family: 'Roboto Mono', monospace;
  font-size: 0.78em;
  color: #555;
  pointer-events: none;
  white-space: pre;
  line-height: 1.9;
  text-align: left;
  opacity: 0;
  transition: opacity 0.35s ease;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.95);
}

#hud.visible {
  opacity: 1;
}