@import url(https://fonts.googleapis.com/css?family=Space+Mono);

html, body {
    height: 100vh;
    overflow: hidden;
}
    
body {
    background: #1a1b1c;
    color: #a1a2a3;
}

div {
    position:absolute;
    height: 100vh;
    width: 100vw;
}

p {
    font-family: 'Space Mono';
    /* background:#b8cfe6; */
    width: 100vw;
    text-align: center;
    margin: -10vh 0 20px 0;
    user-select: none;
    animation: fallDown 10s ease-in forwards;
}

section {
    /* background:#facd9d; */
    padding:1px;
}

@keyframes fallDown {
    from {
        margin-top: -10vh;
    }
    to {
        margin-top: 100vh;
    }
}
