@import url("normalize.css");
@import url('https://fonts.googleapis.com/css?family=Open+Sans');

body {
    font-family: 'Open Sans', sans-serif;
    font-weight: normal;
    color: rgb(160, 163, 164);
    background-color: rgb(8, 15, 17);
    box-sizing: border-box;
    text-align: center;
    vertical-align: middle;
}
h1 {
    color: rgb(232, 235,236);
}
a {
    color: rgb(146, 160, 165);
    text-decoration: none;
    transition: color 0.3s;
}
a:hover {
    color: rgb(232, 235, 236);
}

.infobox {
    display: inline-block;
    text-align: left;
    margin: 25% auto;
    height: 50%;
}
.highlight {
    color: rgb(83, 198, 146);
}

.cursor {
    color: rgb(83, 198, 146);
    animation: blinker 1s step-start infinite;
    margin-left: -0.15em;
}
@keyframes blinker {
    50% {
        opacity: 0;
    }
}