* {
  margin: 0;
  padding: 0;
}

body {
  /*You can use any kind of background here.*/
  background: transparent;
}

canvas {
  display: block;
  position: relative;
  z-index: 1;
  pointer-events: none;
}

#content {
  text-align: center;
  width: 500px;
  height: 300px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -250px;
  margin-top: -150px;
  color: silver;
  font-family: verdana;
  font-size: 45px;
  font-weight: bold;
}

.buttonContainer {
  display: inline-block;
}

button {
  padding: 5px 10px;
  font-size: 20px;
}


.ganadorAnimado {
  animation: ganadorAnimado 2s ease-out infinite;
}

@keyframes ganadorAnimado{
  0% {
    color: #f3e5f5;
  }
  10% {
    color: #e1bee7;
  }
  20% {
    color: #ce93d8;
  }
  30% {
    color: #ba68c8;
  }
  40% {
    color: #ab47bc;
  }
  50% {
    color: #9c27b0;
  }
  60% {
    color: #8e24aa;
  }
  70% {
    color: #7b1fa2;
  }
  80% {
    color: #6a1b9a;
  }
  90% {
    color: #4a148c;
  }
  100% {
    margin-top: 100%;
    transform: scale(1.5) translateY(-0.95em);

  }