html,
body{
    width:100%;
    height:100%;
    margin:0;
    padding:0;
}

body{

    background-color:#000000 !important;
    color:#ffffff !important;

    display:flex;
    align-items:center;

    font-family:Consolas, monospace;
}

.container{

    margin-left:70px;
    width:900px;

}

#text{

    color:white;

    font-size:32px;

    line-height:1.5;

    white-space:pre-wrap;

}

#cursor{

    color:white;

    animation:blink .8s infinite;

}

@keyframes blink{

    50%{

        opacity:0;

    }

}