body {
    margin: 0;
    padding: 0;
    height: 100vh;
    background-color: #222222;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.content {
    text-align: right;
    color: #44eca6;
    font-size: 64px;
    font-family: "Lexend", sans-serif;
    animation: defilement-rtl 5s infinite linear;
}

@keyframes defilement-rtl {
  0% {
    transform: translate3d(0,0,0);      /* position initiale à droite */
  }
  100% {
    transform: translate3d(-100%,0,0);  /* position finale à gauche */
  }
}