body, html {
  margin: 0;
  position: relative;
}

canvas {
  display: block;
  z-index: 1;
}

#contact {
  z-index: 9;
  position: absolute;
  bottom: 25px;
  right: 40px;
}

a {
  text-decoration: none;
  color: white;
  font-family: sans-serif;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  opacity: 0.69;
}

.win {
  font-size:72px;
  animation: color_change 2s infinite alternate;
}

@keyframes color_change {
  from { color: blue; text-shadow: 0 0 10px #FF0; }
  to { color: #FF00FF; }
}