* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #1a1a2e;
  overflow: hidden;
  font-family: 'Fredoka', sans-serif;
}

canvas {
  display: block;
  cursor: pointer;
}

#footer {
  position: fixed;
  bottom: 6px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 10;
}

#footer a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  font-family: 'Fredoka', sans-serif;
  font-size: 12px;
  transition: color 0.3s;
}

#footer a:hover {
  color: rgba(255,255,255,0.7);
}