

#minigame{
  user-select: none;
}



#trophy{
  width: 300px;
  padding: 20px;
}

/* The animation code */
      @keyframes glow {
        from {filter: drop-shadow(1px 1px 5px white);}
        to {filter: drop-shadow(1px 1px 5px white) drop-shadow(1px 1px 5px gold);}
      }
      @keyframes none{}
      /* The element to apply the animation to */
      @keyframes bigglow{
        from{filter: drop-shadow(1px 1px 4px white) drop-shadow(1px 1px 4px white) drop-shadow(1px 1px 3px white) drop-shadow(1px 1px 4px white)}
        to{filter: drop-shadow(1px 1px 4px white) drop-shadow(1px 1px 4px white) drop-shadow(1px 1px 3px white) drop-shadow(1px 1px 4px white)}
      }
      div.dinoImg {
        animation-name: none;
        animation-iteration-count: infinite;
        animation-direction: alternate;
        animation-duration: 2s;
        animation-timing-function: ease;
      }
      @keyframes shine{
        0% {filter: brightness(120%)}
        80% {filter: brightness(300%)}
        100% {filter: brightness(200%)}
      }
      div.chance {
        animation-name: none;
        animation-duration: 0.6s;
        animation-timing-function: ease-in;
      }
      @keyframes chosenglow{
        from{box-shadow: 0 0 10px rgba(255,253,252,1),
            0 0 20px 5px rgba(255,247,229,0.8),
            0 0 30px 15px gold
          }
        to{box-shadow: 0 0 10px rgba(255,253,252,1),
            0 0 20px 5px rgba(255,247,229,0.8),
            0 0 30px 15px rgba(255,225,0,0.5);}
      }

      @keyframes glow-rotate {
        0% {
          transform:rotate(65deg) scale(1.6,.3)
        }
        to {
          transform:rotate(245deg) scale(1.6,.3)
        }
      }

      .glow {
        position: absolute;
        width: 100px;
        height: 50px;
        background: rgb(255,255,255);
        background: radial-gradient(circle,rgb(255,255,255) 10%,rgba(255,255,255,.2) 100%);
        border-radius: 50%;
        filter: blur(10px);
        animation-duration: 6s;
        animation-timing-function: cubic-bezier(.25,0,.75,1);
        animation-iteration-count: infinite;
        animation-direction: alternate;
        animation-name: glow-rotate;
      }
