    *{
    box-sizing: 100%;
}
img{
    max-width: 100%;
}
    body {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100vh;
      font-family: sans-serif;
    background: linear-gradient( 135deg,  #031f51 0%,  #06356d 30%,   #094582 60%,  #031f51 100%);
     font-family: 'Poppins', sans-serif;
    }

.text {
  font-size: 40px;
  color: #fff;
  text-align: center;
  margin-top: 8px;
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid #fff;
  width: 0;
  animation: typingLoop 3s steps(14) infinite, blink 0.75s step-end infinite;
}

@keyframes typingLoop {
  0% {
    width: 0;
    opacity: 1;
  }
  50% {
    width: 100%;
    opacity: 1;
  }
  70% {
    width: 100%;
    opacity: 0;
  }
  100% {
    width: 0;
    opacity: 0;
  }
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}



    .img img{
    width: 150vh;
    }
.title {
  margin-top: -10px;
  display: flex;
  gap: 5px;
  font-size: 60px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.title span {
  color: transparent;
  -webkit-text-stroke: 1px #fff; 
  text-shadow: none;
  animation: fillLetter 0.5s ease forwards;
  opacity: 0;
}

.title span:nth-child(1) { animation-delay: 0.3s; }
.title span:nth-child(2) { animation-delay: 0.6s; }
.title span:nth-child(3) { animation-delay: 0.9s; }
.title span:nth-child(4) { animation-delay: 1.2s; }
.title span:nth-child(5) { animation-delay: 1.5s; }
.title span:nth-child(6) { animation-delay: 1.8s; }

@keyframes fillLetter {
  0% {
    color: transparent;
    opacity: 0;
  }
  100% {
    color: #fff;
    -webkit-text-stroke: 0px;
    text-shadow: 2px 2px 10px rgba(255, 255, 255, 0.7);
    opacity: 1;
  }
}


@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

.img img {
  width: 150vh;
  animation: float 4s ease-in-out infinite;
}
.title {
  font-size: 40px;
  color: #fff;
  font-weight: 600;
  text-shadow: 2px 2px 10px rgb(255 255 255);
}
    .bod-1 {
        display: flex;
        flex-direction: column;
        align-items: center;
}

  