html {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    padding-left:50px;
    height: 100%;
    background-color: #000000;
    font-family: 'PT Mono';
    font-size: 36px;
    color: #FFFFFF;
}

::selection {
    background: rgba(255, 255, 255,1) !important;
    color: black;
    text-shadow: none;
}

::-moz-selection {
    background:  rgba(255, 255, 255,1) !important;
    color: black
    text-shadow: none;
}

@keyframes blinker {
    0% {
        visibility: visible;
    }

    50% {
        visibility: hidden;
    }

    100% {
        visibility: visible;
    }
}

.cursor {
    animation: blinker steps(1) 1.1s infinite;
    background-color: white;
}

.content {
    position: absolute;
    top: 50%;
    /*left: 100px;*/
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.msg {
    padding-bottom: 18px;
}

.iconbar a {
    margin-right: 18px;
    float: left;
}

.iconbar a svg {
    fill: white;
}
