*{
    margin: 0;
    padding: 0;
}
body{
    font-family: 'Monument';
    overflow: hidden;

}
.animation{
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    white-space: nowrap;
    background-color: black;
    color: white;
    overflow: hidden;
    justify-content: center;
    z-index: 100;
    width: 100%;
}
.animate{
    font-size: 100px;
    text-transform: uppercase;
    color: #e0e0e0;
    animation: animate 10s linear infinite;
}
@keyframes animate {
    0%{
        transform: translateX(-100%);
    }
    100%{
        transform: translateX(100%);
    }
}
.animate span{
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px #39ff14;
    margin-left: 10px;
    margin-right: 10px;
}
.container{
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f7f7f7;
    width: 100%;
    height: 100vh;
}
.container h1{
    color: black;
    font-family: 'Neutral Face';
    text-transform: uppercase;
    overflow: hidden;
}