html,
body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
  -webkit-overflow-scrolling: touch;
}

/* Allow text selection for links only */
a {
  -webkit-user-select: text;
  -khtml-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

canvas {
  display: block;
}

.link-container {
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.link-container a {
  color: #1e1e1e;
  text-decoration: underline;
  letter-spacing: 0.1em;
  font-size: 14px;
  font-family: texgyreheroscn-regular;
  line-height: 14px;
  vertical-align: top;
}
@media (max-width: 768px) {
  .link-container {
    padding: 30px 0;
    flex-direction: column;
  }
}
