body {
    /*background-color: #191919;*/
    background-color: #000000;
    color: #c9c9c9;
    font-family: 'Courier New', monospace;
    margin: 0;
    padding: 20px;
    font-size: 1rem;
}

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

.border-bottom {
    border-bottom: 1px solid #555;
}

.outer-container {
    display: flex;
    justify-content: center;
}

.container {
    display: flex;
    width: 100%;
}

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

.profile-image {
    max-width: 150px;
    margin-right: 20px;
}

.main {
    width: 70%;
    padding-right: 20px;
}

.sidebar {
    width: 30%;
    padding-left: 20px;
    border-left: 1px solid #555;
}

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

.header h1 {
    margin-top: 0;
    margin-bottom: 5px;
}

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

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

.sub-header * {
    margin: 0;
}

.section-title {
    padding-bottom: 10px;
    border-bottom: 1px solid #555;
}

a {
    /*color: sandybrown;*/
    color: #84aacb;
}

a:visited {
    /*color: saddlebrown;*/
    color: #587b98
}

p, li {
    color: #c9c9c9;
}

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

.cycle-words::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;
    }
}

.only-if-print {
    display: none;
}

@media print {
    .no-print {
        display: none;
    }

    body {
        color: #000;
        background-color: #fff;
        font-size: 0.9rem;
    }

    p, li {
        color: #000;
    }

    .only-if-print {
        display: initial;
    }
}

@media (max-width: 400px) {
    body {
        font-size: 2rem;
    }

    .cycle-words {
        line-height: 2rem;
    }

    .cycle-words::after {
        height: 2rem;
    }

    .main {
        width: 100%;
        margin: auto;
    }

    .sidebar {
        width: 100%;
        padding-left: 0;
        border-left: 0;
    }

    .header {
        flex-direction: column;
    }

    .header > div {
        width: 100%;
    }

    .about {
        flex-direction: column;
        align-items: initial;
    }

    .profile-image {
        max-width: 100%;
    }

    .container {
        flex-direction: column;
    }
}