html, body {
    height: 100%;
}
body {
    margin: 0;
}
.flex-container {
    height: 100vh;
    padding: 0;
    margin:  0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FBFEFF;
}
.roww {
    width: auto;
}

@keyframes play60 {
  0% {
    background-position: 0px 0px;
    opacity: 0.8;
    transform: scale(0.28);
  }
  12.5%{
    transform: scale(0.3);
    opacity: 1;
  }
  25% {
    opacity: 0.8;
    transform: scale(0.28);
  }
  37.5%{
    transform: scale(0.3);
    opacity: 1;
  }
  50% {
    background-position: -26940px 0px;
    opacity: 0.8;
    transform: scale(0.28);
  }
  62.5%{
    transform: scale(0.3);
    opacity: 1;
  }
  75% {
    opacity: 0.8;
    transform: scale(0.28);
  }
  87.5%{
    transform: scale(0.3);
    opacity: 1;
  }
  100% {
    background-position: 0px 0px;
    opacity: 0.8;
    transform: scale(0.28);
  } 
}

.shapeshifter {
  animation: 6000ms infinite;
  animation-timing-function: steps(60);
  width: 449px;
  height: 318px;
  background-repeat: no-repeat;
  text-align: center;
  transform: scale(0.3);
  /* border-left: 2px solid #fbfeff; */
}
.shapeshifter.play {
  animation-name: play60;
}
