#snowflake {
  display: inline-block;
  vertical-align: -0.5em;
  width: 70px;
  height: 70px;
  color: white;
}

.rotate {
    animation: rotation 3s infinite linear;

    image-rendering: optimizeSpeed;             /* STOP SMOOTHING, GIVE ME SPEED  */
    image-rendering: -moz-crisp-edges;          /* Firefox                        */
    image-rendering: -o-crisp-edges;            /* Opera                          */
    image-rendering: -webkit-optimize-contrast; /* Chrome (and eventually Safari) */
    image-rendering: pixelated; /* Chrome */
    image-rendering: optimize-contrast;         /* CSS3 Proposed                  */
    -ms-interpolation-mode: nearest-neighbor;   /* IE8+                           */
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}

#iceparty_after {
  z-index: 30;
  position: fixed;
  height: auto;
  width: 100%;
  top: 0px;
  left: 0px;
  top: 0px;
  bottom: 0px;
  padding-top: 300px;

  background-image: url(/iceparty_lobby/assets/icons/load_screen.svg);
  background-size: cover;
  background-position: center;

}

#msg_1 {
  font-size: 70px;
}
#msg_2 {
  font-size: 32px;
}
#msg_3 , #msg_3 * {
  font-size: 18px;
  color: #F26457;
  pointer-events: bounding-box;
}