.project-section {
    max-width: 900px;
    width: 100%;
    height: auto;
    display: table;
    padding-bottom: 60px;
    margin: 0 auto;
    position: relative;
    top: 30px;
    font-size: 22px;
    font-weight: 300;
    text-align: justify;
}

.project-section h2 {
    font-size: 26px;
    font-family: var(--header-font);
    color: var(--highlight-color);
}

.project-section h3 {
    font-size: 20px;
    font-weight: 400;
}

.project-section a {
    text-decoration: none;
    color: var(--text-color);
    border-bottom: 1px dashed var(--highlight-color);
}

.project-section a:hover {
    color: var(--highlight-color);
    outline: none;
}

/* project introduction */

#project-introduction {
    max-width: 900px;
    padding-bottom: 60px;
    position: relative;
    top: 30px;
    text-align: center;
    margin: 0 auto 60px;
    border-bottom: 1px dotted var(--highlight-color);
}

#project-introduction h1 {
    font-family: var(--header-font);
    color: var(--highlight-color);
}

#project-introduction h2 {
    margin-bottom: 0;
    font-family: var(--text-font);
    font-size: 20px;
    font-weight: 400;
    line-height: 0.1;
    color: var(--text-color);
}

/* project information */

.project-information, .project-information-stacked {
    max-width: 900px;
    width: 100%;
    height: auto;
    display: table;
    margin: 0 auto;
    position: relative;
    top: 30px;
    font-size: 22px;
    font-weight: 300;
    text-align: justify;
}

.project-information a, .project-information-stacked a {
    text-decoration: none;
    color: var(--text-color);
    border-bottom: 1px dashed var(--highlight-color);
 }

.row {
    display: table-row;
}

.three-columns {
    width: 33%;
    display: table-cell;
    text-align: center;
}

.three-columns p {
    line-height: 0.3;
}

.project-information-stacked {
    display: none;
}

@media screen and (max-width: 700px) {
    .project-information {
        display: none;
    }
    .project-information-stacked {
        display: block;
        text-align: center;
    }
    .project-information-stacked .row-stacked {
        padding-bottom: 15px;
    }
}

/* images */

.gallery {
    display: table-row;
    text-align: center;
}

.gallery img {
    min-width: 125px;
    width: 21%;
    height: auto;
    margin: 10px;
}

@media screen and (max-width: 875px) {
    .gallery img {
        width: 15%;
    }
}

.gallery.bttf img {
    border-radius: 15px;
}

.gallery.wide img {
    width: 75%;
}

.gallery.semi-wide img {
    width: 60%;
}

.gallery.inline img {
    width: 45%;
}

.gallery.shadow img {
    box-shadow: 0 1px 1px 1px #d8d8d8;
}

.gallery.branding img {
    width: 75%;
}

/* metrics section */

.project-section .metrics {
    height: 35px;
    vertical-align: middle;
}

ol {
    font-size: 18px;
    list-style-type: none;
}

li {
    padding-bottom: 15px;
}

#reflection {
    margin-bottom: 90px;
}