<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --ct-red: rgb(100, 0, 0);
    --ct-background-color: var(--bs-dark);
    --ct-background-separator-color: var(--bs-dark);
    --ct-main-section-primary-bg-color: var(--bs-dark);
    --ct-main-section-alternative-bg-color: var(--bs-gray-dark);
    --ct-font-color: rgb(230, 230, 230);
    --ct-font-title-color: rgb(240, 240, 240);
    --ct-emphasis-color: rgb(230, 230, 230);
}

@media(prefers-color-scheme: light) {
    :root {
        --ct-background-color: var(--bs-light);
        --ct-background-separator-color: var(--bs-light);
        --ct-main-section-primary-bg-color: var(--bs-light);
        --ct-main-section-alternative-bg-color: var(--bs-gray-300);
        --ct-font-color: #000;
        --ct-font-title-color: var(--ct-red);
        --ct-emphasis-color: rgb(169, 0, 0);
    }
}

html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    color: var(--ct-font-color) !important;
}

html,
body {
    box-sizing: border-box;
    height: 100%;
    padding: 0;
    margin: 0;
}

.page-wrapper {
    min-height: 100%;
    height: 100%;
    background-color: var(--ct-main-section-primary-bg-color);
}

#header-nav {
    background-color: var(--ct-red) !important;
}

#header-nav a {
    color: #fff !important;
    font-size: 1.125rem;
}

a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

a {
    color: var(--ct-emphasis-color) !important;
}

.footer {
    width: 100%;
    white-space: nowrap;
    background-color: var(--ct-red);
    line-height: 3rem;
    color: #fff;
}

.footer a {
    color: #fff !important;
}

.main-wrapper {
    background-color: var(--ct-main-section-primary-bg-color);
}

.highlight {
    color: var(--ct-emphasis-color);
}

.projects-title {
    color: var(--ct-emphasis-color);
    text-align: center;
}

.projects-list .project h3 {
    color: var(--ct-emphasis-color);
    margin-top: 1rem;
}

.projects-list .project:nth-child(odd) {
    background-color: var(--ct-main-section-alternative-bg-color);
}

.projects-list .project pre {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.blog .blog-entry .col:nth-child(1) {
    border-right: 2px solid var(--ct-red);
}

.top-image h1 {
    font-family: serif;
}

.about-me-pic-wrapper {
    object-fit: cover;
    border-radius: 50%;
}</pre></body></html>