@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono&display=swap');

@font-face {
    font-family: Scanlines;
    src: url(/fonts/Scanlines.ttf);
}

@keyframes textflicker {
  from {
    text-shadow: 1px 0 0 #ea36af, -2px 0 0 #75fa69;
  }
  to {
    text-shadow: 2px 0.5px 2px #ea36af, -1px -0.5px 2px #75fa69;
  }
}

body {
  animation-duration: 0.02s;
  animation-name: textflicker;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  background-color: black;
  color: white;
  font-family: "IBM Plex Mono";
  margin: 0;
  padding: 0;
}

h1 {
  font-family: Scanlines;
}

a,
a:link,
a:visited,
a:hover,
a:active {
  color: white;
  cursor: pointer;
  text-decoration: underline;
}

.content {
  align-items: center;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
}

.header {
  flex: 0 0 100px;
  padding: 10px;
  text-align: center;
}

.sign-content {
  flex: 1;
  text-align: center;
}

.help-text {
}

.footer {
  flex: 0 0 50px;
  font-size: 12px;
  text-align: center;
}

#signCanvas {
  cursor: pointer;
  height: 400px;
  width: 400px;
}