/* --- TYPOGRAPHY & ALIGNMENT --- */
body {
    font-family: 'Courier New', Courier, 'Menlo', monospace;
    font-size: 13px;
    /* Desktop Size */
    line-height: 1.4;
}

h2 {
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
    color: #000;
    display: flex;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid #000;
    padding-bottom: 10px;
}

h2 span.section-num {
    opacity: 0.4;
    margin-right: 8px;
    font-weight: normal;
    white-space: nowrap;
}

.bio-section h2 {
    justify-content: flex-start;
}

.collaborators-section h2,
.meta-section h2 {
    justify-content: space-between;
}

.contact-section h2 {
    justify-content: space-between;
}

p {
    margin-bottom: 20px;
    max-width: 100%;
    text-align: justify;
    text-align-last: left;
    -webkit-hyphens: none;
    -moz-hyphens: none;
    hyphens: none;
}

strong {
    font-weight: normal;
    border-bottom: 1px solid #000;
}

@media (max-width: 900px) {
    body {
        font-size: 14px;
    }

    .collaborators-section h2 {
        justify-content: space-between !important;
    }
}