.row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    max-width: 1500px; 
}
.vertical-divider {
    border-left: 1.1px solid #7d7d7d;
    height: auto;
}
.image-column-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start stretch;
    margin: 0 auto;
    max-width: 1500px;
}

.image-column {
    flex: 1;
    margin: 0 10px;
    text-align: center;
}

.image-column img {
    width: 100%;
    max-width: 500px;
    height: auto;
}

#divider{
    border-top: 1px solid #e4e4e4;
    margin: 20px 0;
}

#project-title {
    font-size: 2.3rem; 
    color: #333;
    text-align: center;
    margin: 0 auto;
}
.markdown-body {
    min-width: 400px;
    max-width: 980px;
    margin: 0 auto;
    font-family: 'Quicksand', sans-serif;

    /* Notion font */
    /* font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI Variable Display", "Segoe UI", Helvetica, "Apple Color Emoji", Arial, sans-serif, "Segoe UI Emoji", "Segoe UI Symbol";  */
    margin-top: 20px;
    padding-bottom: 50px;
    /* background-color: #f5f5f5; */
    /* padding: 30px 100px 30px 100px; */
    /* border-radius: 10px; */
    /* box-sizing: border-box; */
}
.markdown-body hr {
    border: none;
    border-top: 1px solid #bababa;
    margin: 1.5em 0;
    height: 0;
    opacity: 0.3;
    border-width: 1px;
}


@media (max-width: 767px) {
    .markdown-body {
        padding: 15px;
    }
}
.pdf {
    width: 100%;
    aspect-ratio: 4 / 3;
}
.pdf,
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  padding-bottom: 30px;
}
/* From CSS Scan - From Loom */
.back-button {
    background: #fff;
    backface-visibility: hidden;
    border-radius: .575rem;
    border-style: solid;
    border-width: .125rem;
    box-sizing: border-box;
    color: #212121;
    cursor: pointer;
    display: inline-block;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.925rem;
    font-weight: 700;
    letter-spacing: -.01em;
    line-height: 1.3;
    padding: .875rem 0.925rem;
    position: relative;
    text-align: left;
    text-decoration: none;
    transform: translateZ(0) scale(1);
    transition: transform .2s;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    margin-left: 30px;
    margin-top: 30px;
}

.back-button:not(:disabled):hover {
    transform: scale(1.05);
}

.back-button:not(:disabled):hover:active {
    transform: scale(1.05) translateY(.125rem);
}

.back-button:focus {
    outline: 0 solid transparent;
}

.back-button:focus:before {
    content: "";
    left: calc(-1*.375rem);
    pointer-events: none;
    position: absolute;
    top: calc(-1*.375rem);
    transition: border-radius;
    user-select: none;
}

.back-button:focus:not(:focus-visible) {
    outline: 0 solid transparent;
}

.back-button:focus:not(:focus-visible):before {
    border-width: 0;
}

.back-button:not(:disabled):active {
    transform: translateY(.125rem);
}

/* Force containers to stay white in dark mode */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #ffffff !important;
        color: #24292f !important;
    }
    
    .row {
        background-color: transparent !important;
    }
    
    .col-md-6 {
        background-color: transparent !important;
    }
    
    .markdown-body {
        background-color: #ffffff !important;
        color: #24292f !important;
    }
    
    .markdown-body * {
        background-color: transparent !important;
    }
    
    .markdown-body h1,
    .markdown-body h2,
    .markdown-body h3,
    .markdown-body h4,
    .markdown-body h5,
    .markdown-body h6 {
        color: #24292f !important;
    }
    
    .markdown-body p,
    .markdown-body li,
    .markdown-body span,
    .markdown-body div {
        color: #24292f !important;
    }
    
    .markdown-body code {
        background-color: #f6f8fa !important;
        color: #24292f !important;
    }
    
    .markdown-body pre {
        background-color: #f6f8fa !important;
        color: #24292f !important;
    }
    
    .markdown-body blockquote {
        color: #57606a !important;
        border-left-color: #d0d7de !important;
    }
    
    .markdown-body a {
        color: #0969da !important;
    }
    
    .markdown-body table tr {
        background-color: #ffffff !important;
    }
    
    .markdown-body table tr:nth-child(2n) {
        background-color: #f6f8fa !important;
    }
}