body {
    color: #555555;
    font-family: 'Montserrat', sans-serif;
    background-color: #2c456a;
    margin: 0;
}

.content-container {
    display: table;
    position: absolute;
    height: 100%;
    width: 100%;  
}

.content-container .content-wrapper {
    display: table-cell;
    vertical-align: middle;
}

.content-container .content-wrapper .content {
    width: 75%;
    max-width: 960px;
    margin: auto;
}

.content-container .content-wrapper .content .title-label {
    color: white;
    font-size: 1.75em;
    font-weight: 400;
}

.content-container .content-wrapper .content .title-label span {
    text-decoration: underline;
}

.content-container .content-wrapper .content .title-label span:hover {
    cursor: pointer;
}

.content-container .content-wrapper .content .code-block {
    font-family: monospace, sans-serif;
    padding: 35px;
    margin-top: 35px;
    background-color: white;
}

.content-container .content-wrapper .content .code-block p {
    font-size: 0.9em;
    line-height: 2;
    margin: 0;  
}

.content-container .content-wrapper .content #github {
    margin-top: 35px;
    opacity: 0.35;
}

.content-container .content-wrapper .content #github:hover {
    opacity: 1.0;
}

.content-container .content-wrapper .content #github a {
    color: white;
}

.content-container .content-wrapper .content .code-block .indent {
    color: #e3a328;
    margin-left: 15px;  
}

@media only screen and (max-width: 650px) {
    .content-container .content-wrapper .content {
        width: 88%;
    }
    
    .content-container .content-wrapper .content .title-label {
        font-size: 1.25em;
    }
}