
.text11 {
  margin-right: 200px;
  margin-bottom: 50px;
  height: 150vh;
  display: flex;
  flex-direction: column;
  position: absolute;
  justify-content: center;
  font-size: 650px;
}

.slidel {
  position: absolute;
  /*background-color: #FF794D;*/
  display: inline-block;
  flex-direction: column;
  padding: 0px 20px 30px 20px;
  height: 100px;
  overflow: hidden;
  transition: all cubic-bezier(0.71, 0.03, 0.34, 1);
}

.ranger {
  display: flex;
  flex-direction: column;
  animation: wordSlider 5s infinite cubic-bezier(0.9, 0.01, 0.3, 0.99);
}
@media only screen and (max-width: 600px) {
    .text11 {
  margin-right: 130px;
  margin-bottom: 50px;
  height: 50vh;
  display: flex;
  flex-direction: column;
  position: relative;
  justify-content: center;
  font-size: 25px;
 }
}

@keyframes wordSlider {
  0% {
    transform: translateY(0.5%);
  }
  50% {
    transform: translateY(-33%);
  }
  100% {
    transform: translateY(-66%);
  }
}
