/* winners */

body {
  font-family: "-apple-system", "BlinkMacSystemFont", "Segoe UI", "Roboto", "Helvetica", Arial, sans-serif;
  color: #333;
}

h1, h2, h3, h4, h5 {
  font-size: 3em;
}

h1 {
  font-size: 5em;
  margin-top: -1em;
  text-align: center;
}

h3 {
  font-weight: 600;
  font-style: italic;
  text-align: center;
  padding: 0.3em;
}

h4, h5, h6 {
  font-style: normal;
  text-align: right;
  color: #fff;
}

h5 {
  color: #33ff00;
  padding-top: 0.3em;
}

h6 {
  font-size: 2.5em;
  color: #000;
  font-style: italic;
  text-rendering: optimizeLegibility;
  font-weight: 100;
}

.wrapper {
  width: 100%;
}

#widgetHead {
  width: 100%;
  /*height: 5em;*/
  height: 15%;
  position: relative;
  display: block;
  float: left;
  margin-bottom: 3%;
  background-color: #bbb;
  color: #333;
}

.slide {
  width: 100%;
  height: 85%;
  position: absolute;
  top: 15%;
  /*background-color: #fff;*/
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}

.slide_1 {
  animation: info_1 20000ms ease-out;
}

.slide_2 {
  animation: info_2 20000ms ease-out;
}
.slide_3 {
  animation: info_3 25000ms ease-out;
}
.slide_4 {
  animation: info_4 50000ms ;
}

@keyframes info_1 {
  3% {
    opacity: 0;
    transform: scale(0);
  }
  5% {
    opacity: 1;
    transform: scale(1);
  }
  15% {
    opacity: 1;
    transform: scale(1);
  }
  17% {
    opacity: 0;
    transform: scale(2);
  }
}

@keyframes info_2 {
  83% {
    opacity: 0;
    transform: scale(0);
  }
  87% {
    opacity: 1;
    transform: scale(1);
  }
  97% {
    opacity: 1;
    transform: scale(1);
  }
  99% {
    opacity: 0;
    transform: scale(2);
  }
}

@keyframes info_3 {
  83% {
    opacity: 0;
    transform: scale(0);
  }
  87% {
    opacity: 1;
    transform: scale(1);
  }
  97% {
    opacity: 1;
    transform: scale(1);
  }
  99% {
    opacity: 0;
    transform: scale(2);
  }
}
@keyframes info_4 {
  83% {
    opacity: 0;
    transform: scale(0);
  }
  87% {
    opacity: 1;
    transform: scale(1);
  }
  97% {
    opacity: 1;
    transform: scale(1);
  }
  99% {
    opacity: 0;
    transform: scale(2);
  }
}

.row {
  width: 100%;
  height: 25%;
  display: block;
  float: left;
  /* this is the container div */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.row_1 {
}
.row_2 {
}
.row_3 {
}

.rocket {
  height: 80%;
  width: 65%;
  background-color: #0000FF;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  left: -100%;

  background-color: #0000ff;
  background-image: -webkit-linear-gradient(right, #0000ff, #ffffff); /* Chrome 10-25, iOS 5+, Safari 5.1+ */
  background-image: linear-gradient(to left, #0000ff, #ffffff); /* Chrome 26, Firefox 16+, IE 10+, Opera */
}

.rocket_1 {
  animation: blast-off_1 20000ms ease-out;
}
.rocket_2 {
  animation: blast-off_2 20000ms ease-out;
}
.rocket_3 {
  animation: blast-off_3 20000ms ease-out;
}

@keyframes blast-off_1 {
  0% {
    left: -100%;
  }
  55% {
    left: -100%;
  }
  57% {
    left: 0%;
  }
  75% {
    left: 0%;
  }
  78% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

@keyframes blast-off_2 {
  0% {
    left: -100%;
  }
  40% {
    left: -100%;
  }
  42% {
    left: 0%;
  }
  76% {
    left: 0%;
  }
  79% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

@keyframes blast-off_3 {
  0% {
    left: -100%;
  }
  25% {
    left: -100%;
  }
  27% {
    left: 0%;
  }
  77% {
    left: 0%;
  }
  80% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

.name-score-box {
  width: 40%;
  height: 100%;
  /*background-color: red;*/
  /*position: absolute;*/
  padding-right: 1em;
  display: flex;
  justify-content: center;
  /*align-content: space-between;*/
  flex-direction: column;
}

.ranking-box {
  width: 40%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.arrow-head {
  /*background-color: #0000FF;*/
  background-image: url('images/arrow-head.png');
  background-repeat: no-repeat;
  width: 7em;
  right: -7em;
  height: 100%;
  position: absolute;
  display: block;
}

.arrow-head-img {
  position: absolute;
  right: -95px;
  height: 100%;
}

.inner-flex {
  display: flex;
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
}


/* foundation 6 breakpoints */
/* Small only */
@media screen and (max-width: 39.9375em) {

  h1, h2, h3, h4, h5 {
    font-size: 2em;
  }
  h1 {
    font-size: 3.33em;
    /*margin-top: -1em;*/
  }
  h3 {
    /*padding: 0.3em;*/
  }
  h5 {
    padding-top: 0.5em;
  }
  h6 {
    font-size: 1.66em;
  }
}

/* Medium and up */
/*@media screen and (min-width: 40em) {}*/

/* Medium only */
@media screen and (min-width: 40em) and (max-width: 63.9375em) {

  h1, h2, h3, h4, h5 {
    font-size: 2em;
  }
  h1 {
    font-size: 3.33em;
    /*margin-top: -1em;*/
  }
  h3 {
    /*padding: 0.3em;*/
  }
  h5 {
    padding-top: 0.5em;
  }
  h6 {
    font-size: 1.66em;
  }
}

/* Large and up */
/*@media screen and (min-width: 64em) {}*/

/* Large only */
/*@media screen and (min-width: 64em) and (max-width: 74.9375em) {}*/
