
@import url('https://fonts.googleapis.com/css2?family=Passion+One:wght@700&family=Roboto:wght@100;300;400;900&family=Yantramanav:wght@900&display=swap');

body {
  font-family: 'Roboto', sans-serif;
  font-weight: 800;
  background: #6493aa;
  display: flex;
  flex-direction: column;
  height: 100vh;
  justify-content: center;
  align-items: center;   
  margin: 0;
  padding: 30px;
  box-sizing: border-box;
  font-size: 16px;
}

a {
  margin-top: 20px;
  color: #fff;
  display: inline-block;
 }

 a:hover{
  transform: rotate(360deg);
  transition: .25s ease-in-out;
 }
  
.teaser{
  color: #28424f;
  font-weight: 900;
 }
     
.teaser--off{
  font-size:  1.5rem;
  margin-top: 10px;

 }
     
.teaser--recommendation{
  margin-top: 10px;
  font-weight: 900;
  text-align: center;
 }


.words {
  color: #6493aa;
  font-size: 0;
  line-height: 1.0;
  text-transform: lowercase;
  margin-bottom: 40px;
  text-align: center;
}

.words span {
  font-size: 8rem;
  display: inline-block;
  animation: move 3s ease-in-out infinite;
}

@media screen and (max-width : 411px)
{
  .words span {
      font-size: 4.5rem;
      display: inline-block;
      animation: move 3s ease-in-out infinite;
  }
}


@keyframes move {
  0% {
    transform: translate(-30%, 0);
  }
  50% {
    text-shadow: 0 25px 50px rgba(0, 0, 0, 0.75);
  }
  100% {
    transform: translate(30%, 0);
  }
}

.words span:nth-child(2) {
  animation-delay: 0.5s;
}

.words span:nth-child(3) {
  animation-delay: 1s;
}

.words span:nth-child(4) {
  animation-delay: 1.5s;
}

.words span:nth-child(5) {
  animation-delay: 2s;
}

.words span:nth-child(6) {
  animation-delay: 2.5s;
}

.words span:nth-child(7) {
  animation-delay: 3s;
}
