body {
    font-family: "Fira Mono", monospace;
    font-weight: 900;
    color: #eee;
    margin: 0;
    padding: 0;
    background: #001118;
    overflow-x: hidden;
}
.lead {
    position: absolute;
    max-width: 25%;
    max-height: 80%;
    min-width: 400px;
    min-height: 600px;
}
.cont {
    position: absolute;
    top: 10px;
    margin-left: 22.5%;
}
.atat {
    display: inline-block;
    transform: scale(10, 1);
    margin: 0;
    padding: 0;
    line-height: 5px;
    overflow: hidden;
    white-space: nowrap;
    animation: moove 30s infinite linear;
}
h1 {
    margin: 0;
}
section {
    display: block;
    margin: 40px 0 40px 20%;
    font-size: 14px;
    white-space: nowrap;
}
section h2 {
    writing-mode: sideways-lr;
    display: inline-block;
    vertical-align: middle;
    transform: translateX(-10px);
}
section div {
    display: inline-block;
    vertical-align: middle;
}
pre {
    background: rgba(255, 255, 255, .2);
    padding: 5px;
    margin: 2px 0;
    overflow-x: scroll;
    white-space: nowrap;
}
a, a:hover, a:active {
    display: block;
    color: #fff;
}
a:visited {
    color: #aaa;
}
@media screen and (max-width: 1400px) {
    body {
        background: #00080C;
    }
    .lead {
        filter: brightness(.5);
    }
    section {
        margin: 40px 0;
    }
}
@keyframes moove {
    from {
        transform: scale(10, 1) translateX(0);
    }
    to {
        transform: scale(10, 1) translateX(20%);
    }
}
.credit {
    font-size: 14px;
    writing-mode: sideways-lr;
    position: absolute;
    text-decoration: none;
    left: 5px;
    bottom: 10px;
}