body {
  margin: 0;
  width: 100dvw;
  height: 100dvh;
  background: var(--color-main);
  font-family: var(--font-0);
  font-size: 15pt;
  user-select: none;
  -o-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
}

.sign-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.canvas {
  position: fixed;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: var(--color-main);
  display: none;
}

.content {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
}

.footer-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-id {
  position: fixed;
  top: 0;
  left: 0;
  width: 100dvw;
  height: 100dvh;
  background-color: var(--color-main);
  z-index: 3;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.profile-id div {
  color: #fff;
  font-family: 'Courier New', Courier, monospace;
}