body {
    padding: 0;
    margin: 0;
    background-color: #171B21;
    color: #fff;
    line-height: 1;

    font-family: Arial, Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

p {
    margin: 0;
    text-align: center;
}

.container {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
}
.loader {
    position: relative;
    font-size: 2em;
    color: #171B21;
    mix-blend-mode: difference;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 0.2em;
    padding: 0.2em;
    margin-bottom: 0.5em;
}

.loader span {
    color: #fff;
    mix-blend-mode: difference;
}

.loader:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 100%;
    background: #fff;
    animation: animate 3s linear infinite;
}

.roadmap {
    margin-top: 1em;
}

.roadmap li {
    margin: 0.5em 0;
}
.roadmap span {
    background-color: #fff;
    color: #171B21;
}

.roadmap span.now {
    color: green;
}

@keyframes animate {
    0% {
        left: 0;
    }
    50% {
        left: calc(100% - 80px);
    }
    100% {
        left: 0;
    }
}
