.footer{
    background-color: clear; 
    color: #000; 
    width: 100%; 
    clear: both; 
    position: fixed; 
    bottom: 0px;
    text-align: center;
}
    
.footer-text {
    padding-left: 1450px;
}

.textommig {
    font-family: 'Charm', cursive;
    text-align: left;
    width: 50%;
    <!-- padding-left: 450px;-->

.animated {
  font-family: 'Charm', cursive;
  margin: 0;
  padding: 0;
  font-size: 2rem;
  background: url('https://i.ibb.co/89Cf3dm/text-bg.png') no-repeat;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: moveBg 25s linear infinite;
  -webkit-animation: moveBg 25s linear infinite;
}

/* Text Background Animation */
@keyframes moveBg {
  0% {
    background-position: 0% 30%;
  }

  100% {
    background-position: 100% 50%;
  }
}