html {
    height: 100%;
}

body {
    background-color: #191919;
    color: #c9c9c9;
    font-family: 'Courier New', monospace;
    margin: 0;
    width: 100%;
    height: 100%;
    font-size: 1rem;
}

.body-wrap {
    width: 1000px;
    height: 100%;
    margin: auto;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.section {
    margin-top: 20px;
    margin-bottom: 20px
}

.sub-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto;
}

a {
    color: sandybrown;
}

a:visited {
    color: saddlebrown;
}

p, li {
    color: #c9c9c9;
}

.cursor {
    position: relative;
    display: inline-block;
    line-height: 1rem;
}

.cursor::after {
    content: "";
    position: absolute;
    top: 0;
    right: -15px;
    /* Remove display: inline-block if not required to be on the same line as text etc */
    display: inline-block;
    background-color: #606060;
    vertical-align: top;
    width: 10px;
    /* Set height to the line height of .text */
    height: 1rem;
    -webkit-animation: blink 1s step-end infinite;
    animation: blink 1s step-end infinite;
}

@-webkit-keyframes blink {
    0% {
        opacity: 1.0;
    }
    50% {
        opacity: 0.0;
    }
    100% {
        opacity: 1.0;
    }
}

@keyframes blink {
    0% {
        opacity: 1.0;
    }
    50% {
        opacity: 0.0;
    }
    100% {
        opacity: 1.0;
    }
}
