body {
  display: flex;
  align-items: center;
  flex-direction: column;
  font-family: helvetica, arial;
  position: relative;
  perspective: 500px;
}

.congratulations {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 11;
  user-select: none;
  pointer-events: none;
}

.congratulations-text {
  font-size: 14vw;
  font-family: 'Butcherman', cursive;
  color: #ff122c;
  text-shadow: 1px 1px 4px #012fe1;
  display: none;
}

.animation {
  display: block;
  -webkit-animation: entrance 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s 1 normal both;
          animation: entrance 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s 1 normal both;
}

.title {
  font-family: 'Monoton', cursive;
  font-weight: 100;
  font-size: 48px;
  flex: 0 1 auto;
  margin-bottom: 0;
  margin-left: 99px;
}

.subtitle {
  flex: 0 1 auto;
  margin-left: 99px;
}

@media (max-width: 700px) {
  .title {
    font-size: 28px;
  }
}

.content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  max-width: 700px;
  width: 100%;
  flex: none;
}

.contestant {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 10px;
}

.avatar {
  width: 75px;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0px 0px 6px 0px #c1c0c0;
  margin: 10px;
}

.progress-wrap {
  position: relative;
  width: 90%;
}

.progress {
  background-color: lightgray;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 0px 6px 0px #bbb;
  height: 28px;
  margin: 15px;
}

.progress-label {
  display: flex;
  align-items: center;
  justify-content: center;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  position: absolute;
}

.progress-fill {
  left: 0;
  top: 0;
  bottom: 0;
  width: 0%;
  transition: all 1s ease;
  background: linear-gradient(to right, #04d804 , #56a556);
  position: absolute;
}

a, a:visited, a:hover, a:active {
  color: rgb(0, 0, 238); /* webkit-link color */
}

/* ANIMATIONS */
/* ----------------------------------------------
 * Generated by Animista on 2018-2-8 23:35:8
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation slide-in-bck-center
 * ----------------------------------------
 */
@-webkit-keyframes entrance {
  0% {
    -webkit-transform: rotate(-35deg) translateZ(600px);
            transform: rotate(-35deg) translateZ(600px);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotate(-35deg) translateZ(0);
            transform: rotate(-35deg) translateZ(0);
    opacity: 1;
  }
}
@keyframes entrance {
  0% {
    -webkit-transform: rotate(-35deg) translateZ(600px);
            transform: rotate(-35deg) translateZ(600px);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotate(-35deg) translateZ(0);
            transform: rotate(-35deg) translateZ(0);
    opacity: 1;
  }
}

