<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    /* Default : dark mode */
    --bg-color: #222;
    --text-color1: #eee;
    --text-color2: #bbb;
    --text-color3: #888;
    --svg-color: #eee;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

@font-face {
    font-family: Graphik;
    src: url("/font/Graphik-Regular-Trial.otf") format("opentype");
}



@media (prefers-color-scheme: light) {
    :root {
        --bg-color: #fff;
        --text-color1: #111;
        --text-color2: #555;
        --text-color3: #999;
        --svg-color: #111;
    }
}

body {
    background-color: var(--bg-color);
}

main {
    width: 100%;
    padding: 0 48px;
    display: flex;
    justify-content: center;
}

#linkArrow path {
    fill: var(--svg-color);
}


.appWrapper {
    max-width: 540px;
    width: 100%;
    padding: 72px 0;
}

.profile {
    display: flex;
    align-items: center;
    column-gap: 16px;
}

.profilePic {
    position: relative;
    border-radius: 50%;
    height: 92px;
    width: 92px;
}

.profilePic img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    left: 0;
    top: 0;
}

.profileInfo {
    flex: 1 1;
    display: flex;
    align-items: center;
}

.profileInfo h2 {
    font-family: 'Graphik';
    font-size: 20px;
    line-height: 1.3;
    color: var(--text-color1);
    font-weight: 400;
}

.about {
    margin: 36px 0;
}

.about h2 {
    font-family: 'Graphik';
    font-size: 14px;
    margin-bottom: 4px;
    color: var(--text-color1);
    font-weight: 400;
}

.about p {
    font-family: 'Graphik';
    font-size: 14px;
    color: var(--text-color2);
    line-height: 1.6;
    font-weight: 400;
}

section {
    margin: 60px 0;
}

.sectionHead h3 {
    font-family: 'Graphik';
    font-size: 14px;
    margin-bottom: 4px;
    color: var(--text-color1);
    font-weight: 400;
}

.sectionItem {
    display: flex;
    flex-direction: row;
    margin: 36px 0;
}

.sectionDuration {
    color: var(--text-color3);
    margin-right: 36px;
    white-space: nowrap;
    position: relative;
    text-align: right;
    font-feature-settings: "tnum";
    font-variant-numeric: tabular-nums;
}

.sectionDuration span {
    font-family: 'Graphik';
    font-size: 14px;
    color: var(--text-color3);
    line-height: 1.6;
    font-weight: 400;
    position: absolute;
}

.sectionDuration::after {
    content: "0000 — 0000";
    visibility: hidden;
}

.sectionContent {
    flex: 1 1;
    word-break: break-word;
}

.sectionContent .title {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.sectionContent .title a {
    font-family: 'Graphik';
    font-size: 14px;
    color: var(--text-color1);
    line-height: 1.6;
    font-weight: 400;
}

.sectionContent .title span {
    transform: translateY(-2px) translateX(2px);
}

.sectionContent .title a:hover {
    border-bottom: 1px solid;
}

.sectionContent .subheading {
    font-family: 'Graphik';
    font-size: 14px;
    color: var(--text-color2);
    line-height: 1.6;
    font-weight: 400;
}

.sectionContent .desc {
    margin-top: 8px;
}

.sectionContent .desc ul li {
    padding: 4px 0;
    font-family: 'Graphik';
    font-size: 14px;
    color: var(--text-color2);
    line-height: 1.6;
    font-weight: 400;
}

.sectionContent .images {
    margin-top: 12px;
    height: 105px;
    display: flex;
    gap: 8px;
    padding-bottom: 15px;
    max-width: 415px;
    overflow: scroll;
     scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
}
.sectionContent .images::-webkit-scrollbar{
    display: none;
}

.sectionContent .images img {
    border-radius: 8px;
}

.sectionContent .images img:hover {
    cursor: pointer;
}


@media only screen and (max-width: 480px) {
    main {
        padding: 0 24px;
    }

    .appWrapper {
        padding: 24px 0 96px;
    }

    .about h2 {
        margin-bottom: 12px;
    }

    .about p {
        margin-left: 16px;
    }

    .sectionItem {
        flex-direction: column;
        margin-left: 16px;
    }

    .sectionDuration {
        text-align: left;
    }
}</pre></body></html>