.section {
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-draw {
  font-size: 90px;
  line-height: 1.2;
  font-weight: 500;
  text-transform: uppercase !important;
  font-family: "Teachers", sans-serif;
  text-align: center;
}

.text-draw span {
  color: rgba(255, 255, 255, 0.2);
  transition: 0.2s linear;
}

.text-draw span.visible {
  color: rgba(255, 255, 255, 1);
}

@media screen and (max-width: 1366px) {
.text-draw {
    font-size: 50px;
}
}

@media screen and (max-width: 1024px) {
.text-draw {
    font-size: 40px;
}
}

@media screen and (max-width: 880px) {
.text-draw {
    font-size: 30px;
}
}