.elementor-218 .elementor-element.elementor-element-041d963{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-218 .elementor-element.elementor-element-75cca49{--display:flex;--min-height:544px;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-218 .elementor-element.elementor-element-75cca49:not(.elementor-motion-effects-element-type-background), .elementor-218 .elementor-element.elementor-element-75cca49 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-position:center center;background-size:cover;}/* Start custom CSS for container, class: .elementor-element-75cca49 */body {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background-color: #282c34;
  color: white;
}

.animated-text {
  display: flex;
  gap: 5px;
}

.animated-text span {
  display: inline-block;
  font-size: 2rem;
  font-weight: bold;
  transform: translateY(100%);
  opacity: 0;
  animation: ascend 1s ease-in-out forwards;
}

.animated-text span:nth-child(1) { animation-delay: 0.1s; }
.animated-text span:nth-child(2) { animation-delay: 0.2s; }
.animated-text span:nth-child(3) { animation-delay: 0.3s; }
.animated-text span:nth-child(4) { animation-delay: 0.4s; }
.animated-text span:nth-child(5) { animation-delay: 0.5s; }
.animated-text span:nth-child(6) { animation-delay: 0.6s; }

@keyframes ascend {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}/* End custom CSS */