.text1 {
    position: absolute;
    width: 690px;
    height: 100px;
    border: 1px solid rgb(0, 0, 0);
    z-index: 50;
    font-size: 175px;
    background-color: white;
    overflow: hidden;
    color: rgb(60, 112, 209);
    text-align: center;
    border-width: 0 0 2 0;
    animation: movementmin 2s linear infinite;
}
.text2 {
    position: absolute;
    width: 690px;
    height: 200px;
    z-index: 0;
    font-size: 175px;
    background-color: white;
    color: rgb(109, 11, 109);
    text-align: center;
    animation: movement 2s linear infinite;
}

@keyframes movement {
    0% {left: 0px;}
    50% {left: -10px;}
    100% {left: 0px;}
  }
  @keyframes movementmin {
    0% {left: -10px;}
    50% {left: 0px;}
    100% {left: -10px;}
  }

.CONTAINMENT708 {
    position: relative;
    overflow: hidden;
    left: 50%;
    transform: translateX(-50%);
    width: 680px;
    height: 200px;
    border: 0px red solid;
    padding-right: 0px;
    padding-left: 0px;
  }