h1{
  font-family: "Lilex", monospace;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 40vh;
  word-spacing: 100px;
  margin-bottom: 0%;
}

*{
  font-family: "Lilex", monospace;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

body{
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
}

footer{
    position: fixed;
    bottom: 0;
    width: 100%;
    font-family: "SUSE Mono", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    background-color: black;
    margin-top: auto;
    overflow-wrap: break-word;
    word-break: break-word;
}

.footer-text{
    color: white;
    font-family: inherit;
    font-optical-sizing: inherit;
    font-weight: inherit;
    font-style: inherit;
    position: relative;
    animation: marker 10s linear infinite;
}

@keyframes marker {
    from {
        left: -20%;
    }
    to{
        left: 100%;
    }
}