/* Header */
.mobile-header,
.mobile-footer {
    display: none;
}

/* Body */
html,
body {
    margin: 0;
    height: 100%;
    overflow-y:auto;
}

/* Typeface */
* {
    font-family: Roboto;
    font-size: 15px;
    font-weight: 350;
}

p {
    color:#2f2f2f
}

h1 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 0px;
}

h2 {
    font-size: 20px;
    margin: 0px;
}

.bold {
    font-weight: 600;
}

.content-section-title {
    font-weight: 600;
    padding-top: 10px;
}

.italic {
    font-style: oblique;
}

.grey {
    color: grey;
}

.caption {
    color: grey;
    font-style: oblique;
    font-size: 13px;
}

/* Links */
a {
    text-decoration: none;
    color: #2f2f2f;
}

a:active {
    color:grey;
}

/* Flex */
.flex-container {
    display: flex;
    height: 100vh;
}

.flex-container div {
    flex: 1;
}

.flex-container .navigation,
.flex-container .mobile-navigation,
.flex-container .gallery,
.flex-container .mobile-gallery,
.flex-container .content {
    padding: 40px;
}

.flex-container .mobile-navigation {
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 40px;
}

.flex-container .gallery,
.flex-container .mobile-gallery,
.flex-container .content {
    flex: 3 1 0%;
    display: flex;
}

.left-gallery img,
.right-gallery img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 15px;
}

.main-content img {
    max-width: 100%;
    height: auto;
    display: block;
}

.left-gallery,
.right-gallery {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Independent Scrolling */
.gallery,
.mobile-gallery {
    gap: 15px;
    overflow-y: auto;
}

.navigation,
.content,
.mobile-navigation {
    overflow-y: auto;
}

/* Hide Scrollbar */
.gallery,
.navigation,
.content,
.mobile-navigation,
.mobile-gallery,
body {

    scrollbar-width: none;
    -ms-overflow-style: none;
}

.gallery::-webkit-scrollbar,
.navigation::-webkit-scrollbar,
.content::-webkit-scrollbar,
.mobile-navigation::-webkit-scrollbar,
.mobile-gallery::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
}

/* Table */
.project-table {
    margin-top: 8px;
    width: 100%;
    color: #2f2f2f;
    margin-left: -8px;
    margin-right: -8px;
    border-spacing: 8px;
}

.project-table th {
    font-weight: 600;
    text-align: left;
}

.project-table td,
.project-table th {
    vertical-align: middle;
    padding: 0px 0px 8px 0px;
}

.project-table td,
.project-table th {
    border-bottom: 1px solid #2f2f2f;
}

.project-table tr:last-child td{
    border-bottom: none;
}

.project-table th:nth-child(1),
.project-table td:nth-child(1),
.project-table th:nth-child(3),
.project-table td:nth-child(3) {
    width: 60px;
}

.cv-table {
    color: #2f2f2f;
}

.cv-table td {
    vertical-align: top;
}

.cv-table tr {
    text-align: left;
}

.cv-table td:nth-child(1) {
    width: 120px;
}

.header-table {
    color: #2f2f2f;
    width: 100%;
}

.header-table td {
    text-align: center;
    vertical-align: top;
}

.header-table td:nth-child(1) {
    text-align: left;
}

.header-table td:nth-child(3) {
    text-align: right;
}

.mobile-header-table {
    width: 100%;
}

.mobile-header-table td {
    text-align: center;
    vertical-align: top;
}

.mobile-header-table td:nth-child(1) {
    text-align: left;
}

.mobile-header-table td:nth-child(2) {
    text-align: right;
}

/* Ordered List */

ol {
    color:#2f2f2f;
}

ol li::marker {
    font-weight: 600;
}

li {
    padding-left: 15px;
}

/* Side-By-Side Images */
.image-column {
    flex: 50%;
}

.image-row {
    display: flex;
    gap: 10px;
}

/* Media Query - Phones*/
@media only screen and (max-width: 600px) {
    * {
        font-size: 20px;
    }
    
    .caption {
        font-size: 16px;
    }

    .navigation,
    .empty,
    .flex-container .mobile-gallery,
    .flex-container .mobile-gallery .left-gallery,
    .flex-container .mobile-gallery .right-gallery {
        display: none;
    }

    .mobile-header,
    .mobile-footer {
    display: flex;
    padding: 15px;

    position: sticky;
    top: 0;

    background: white;

    }

    .gallery,
    .content,
    .mobile-navigation {
        width: 100%;
    }

    .flex-container .gallery,
    .flex-container .content,
    .flex-container .mobile-navigation {
    padding-top: 0px;
    }

    .desktop-only {
        display: none;
    }

}