@font-face {
  font-family: 'fnt';
  font-weight: 300;
  src: url('./assets/fntlight.woff');
}
body {
  background: #0D0D0D;
  font-family: 'fnt', 'Helvetica', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0;
  letter-spacing: 1px;
  -webkit-text-size-adjust: 100%;
  margin: 0;
  overflow: hidden;
}

* {
  -webkit-touch-callout: none;                /* prevent callout to copy image, etc when tap to hold */
  /* -webkit-text-size-adjust: none;             prevent webkit from resizing text to fit */
  -webkit-tap-highlight-color: rgba(0,0,0,0); /* prevent tap highlight color / shadow */
}

html, body {
  width: 100%;
  height: 100%;
}
/* 
canvas {
  cursor: none;
} */

.content {
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: white;
  font-weight: 700;
}

.noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.title {
  width: 130px;
}

.header {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.link, .link-container {
  pointer-events: initial;
  position: absolute;
  bottom: 0;
  padding: 10px;
  margin: 10px;
}
.no-touch .link:hover,
.no-touch .credits:hover {
  color: rgba(255, 255, 255, 1.0);
  -webkit-transition: color 400ms cubic-bezier(0.250, 0.460, 0.450, 0.940); 
  -moz-transition: color 400ms cubic-bezier(0.250, 0.460, 0.450, 0.940); 
  -o-transition: color 400ms cubic-bezier(0.250, 0.460, 0.450, 0.940); 
  transition: color 400ms cubic-bezier(0.250, 0.460, 0.450, 0.940);
}

.link, .credits {
  cursor: pointer;
  color: rgba(255, 255, 255, 0.5);
  -webkit-transition: color 500ms cubic-bezier(0.250, 0.460, 0.450, 0.940); 
  -moz-transition: color 500ms cubic-bezier(0.250, 0.460, 0.450, 0.940); 
  -o-transition: color 500ms cubic-bezier(0.250, 0.460, 0.450, 0.940); 
  transition: color 500ms cubic-bezier(0.250, 0.460, 0.450, 0.940);
}

.credits-container {
  left: 15px;
  bottom: 5px;
  padding: 0px;
  margin: 10px;
}

.credits {
  padding: 10px;
  padding-right: 2px;
  pointer-events: initial;
  display: inline-block;
}
.credits-detail {
  pointer-events: initial;
  display: inline-block;
}

.description {
}

a, a:visited, a:active, a:hover {
  color: white;
  font-weight: 600;
  text-decoration: none;
  position: relative;
}

.no-touch a:hover::after {
  -webkit-transition: transform 500ms cubic-bezier(0.250, 0.460, 0.450, 0.940); 
  -moz-transition: transform 500ms cubic-bezier(0.250, 0.460, 0.450, 0.940); 
  -o-transition: transform 500ms cubic-bezier(0.250, 0.460, 0.450, 0.940); 
  transition: transform 500ms cubic-bezier(0.250, 0.460, 0.450, 0.940);
  transform: translateY(0px) scaleY(1.0);
  opacity: 0.75;
  background: white;
  color: white;
}

a::after {
  -webkit-transition: transform 500ms cubic-bezier(0.250, 0.460, 0.450, 0.940); 
  -moz-transition: transform 500ms cubic-bezier(0.250, 0.460, 0.450, 0.940); 
  -o-transition: transform 500ms cubic-bezier(0.250, 0.460, 0.450, 0.940); 
  transition: transform 500ms cubic-bezier(0.250, 0.460, 0.450, 0.940);
  box-sizing: border-box;

  width: 100%;
  height: 1px;
  opacity: 0.75;
  background: white;
  color: white;
  display: block;
  content: ' ';
  position: absolute;
  bottom: -3px;
  left: 0;
  transform: translateY(0px) scaleY(0.0);
}

.plus {
  opacity: 0.5;
  font-size: 6px;
  position: relative;
  top: -1px;
  left: -0.0px;
}
.mute {
  pointer-events: initial;
  right: 0;
  bottom: 5px;
  right: 15px;
}
.unmute-part {
  position: relative;
  display: inline-block;
}
.hidden {
  visibility: hidden;
}

.name {
  display: initial;
}
.name.shorthand {
  display: none;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


/* @media only screen and (max-width: 1000px) {
  .description {
    font-size: 14px;
  }
  body {
    font-size: 14px;
  }
} */
@media only screen and (max-width: 400px) {
  .name {
    display: none;
  }
  .name.shorthand {
    display: initial;
  }
  .description {
    font-size: 12px;
  }
  .mute {
    bottom: 0px;
    right: 0px;
    padding-top: 10px;
  }
  .credits-container {
    bottom: 0px;
    left: 0px;
  }
  .credits {
  }
  body {
    -webkit-font-smoothing: initial;
    -moz-osx-font-smoothing: initial;
    font-size: 12px;
  }
}