* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Times New Roman", Times, serif;
  background-color: #f9f9f9;
}
.my_container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* background clip */
.bg-clip {
  background-color: #000;
}
h1.animated {
  text-align: center;
  font-family: sans-serif;
  font-size: 6rem;
  line-height: 1.2;
  color: transparent;
  background: url("../images/text-bg.png") no-repeat;
  background-clip: text;
  -webkit-background-clip: text;
  animation: moveBg 25s linear infinite;
  -webkit-animation: moveBg 35s linear infinite;
}
/* animation for bg clip */
@keyframes moveBg {
  0% {
    background-position: 0% 30%;
  }
  100% {
    background-position: 100% 50%;
  }
}
