@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/montserrat-400-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url('fonts/montserrat-900-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 200;
    font-display: swap;
    src: url('fonts/poppins-200-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('fonts/poppins-300-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/poppins-400-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('fonts/poppins-500-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('fonts/poppins-600-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('fonts/poppins-700-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
*{
    margin:0px;
    padding:0px;
}
:root {
    --bg-dark-color: #021d36;
    --text-dark-color: #5e8bb6;
    --accent-dark-color: #a6c9ea;
    --bg-light-color: #d2e7fb;
    --bg-light-gradient: linear-gradient(to right, rgba(210, 231, 251, 0) 0%, rgba(210, 231, 251, 1) 100%);
    --bg-dark-gradient:  linear-gradient(to right, rgba(2, 29, 54, 0)     0%, rgba(2, 29, 54, 1)     100%);
    --text-light-color: #000000;
    --accent-light-color: #000000;
    --font-family: 'Poppins', sans-serif;
    --header-font-family: 'Montserrat', sans-serif;
    --bg-color: var(--bg-dark-color);
    --text-color: var(--text-dark-color);
    --accent-color: var(--accent-dark-color);
    --muted-color: rgba(255,255,255,.6);
    --control-border-color: var(--accent-dark-color);
    --control-shadow-color: rgba(255,255,255,.5);
    --control-surface-color: rgba(255,255,255,.08);
    --control-active-color: rgba(255,255,255,.2);
}

body.theme-dark {
    --theme-opacity: .05;
    --bg-color: var(--bg-dark-color);
    --bg-gradient: var(--bg-dark-gradient);
    --text-color: var(--text-dark-color);
    --accent-color: var(--accent-dark-color);
    --muted-color: rgba(255,255,255,.6); 
    --name-color: var(--text-dark-color); 
    --control-border-color: var(--accent-dark-color);
    --control-shadow-color: rgba(255,255,255,.5);
    --control-surface-color: rgba(255,255,255,.08);
    --control-active-color: rgba(255,255,255,.2);
    --profile-pic-filter: saturate(1);
}

body.theme-light {
    --theme-opacity: 1;
    --bg-color: var(--bg-light-color);
    --bg-gradient: var(--bg-light-gradient);
    --text-color: var(--text-light-color);
    --accent-color: var(--accent-light-color);
    --name-color: var(--text-light-color);
    --muted-color: rgba(0,0,0,.6);
    --control-border-color: #000000;
    --control-shadow-color: rgba(0,0,0,.35);
    --control-surface-color: rgba(0,0,0,.08);
    --control-active-color: rgba(0,0,0,.15);
    --profile-pic-filter: saturate(.5) contrast(1.5);
}

body{
    margin:0px auto; 
    max-width:800px;
    font-family: var(--font-family);
    font-size:12px;
    background-color: var(--bg-color);
    color: var(--text-color);
    padding:24px;
    transition: background-color .3s ease, color .3s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
img{
    max-width:100%;
    height:auto;
    display:block;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--header-font-family);
    color: var(--accent-color);
}
h2{
    font-size:2em;
    letter-spacing:-1px;
    margin-bottom:20px;
    border-bottom:5px solid var(--accent-color);
    padding-bottom:5px;
}
h3{
    font-size:1.5em;
    letter-spacing:-1px;
    font-weight:400;
}
a{
    color: var(--text-dark-color-color);
    text-decoration:none;
}
a:hover{
    text-decoration:underline;
}
.sr-only{
    position:absolute;
    width:1px;
    height:1px;
    padding:0;
    margin:-1px;
    overflow:hidden;
    clip:rect(0,0,0,0);
    border:0;
}
button{
    border:0px none;
    background-color: transparent;
}
header{
    width:100%;
    margin-bottom:20px;
    position:relative;
}
header h1{
    overflow:hidden;
    color: var(--name-color);
    font-weight:900;
    font-size:8em;
    line-height: .75em;
    letter-spacing:-.1em;
    text-transform: uppercase;
    margin-bottom:15px;
    opacity:var(--theme-opacity);
    text-overflow:clip;
}
header h1::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 2.5em;
  height: 100%;
  pointer-events: none;
  background: var(--bg-gradient);
}
header span.title{
    font-size:3em;
    font-weight: 200;
    letter-spacing:-2px;
}
header div.title-controls-container{
    display:flex;
    justify-content:space-between;
    align-items: flex-end;
}
header .header-controls{
    float:right;
    display:flex;
    flex-direction:row;
    gap:10px;
    align-items:flex-end;
    z-index:10;
    margin-bottom:12px; 
}
header .lang-switcher,
header .theme-switcher,
header .print-action{
    display:flex;
    gap:8px;
}
header .toggle-switch{
    position:relative;
    min-width:160px;
    height:26px;
    border-radius:999px;
    background-color: var(--control-surface-color);
    color: var(--accent-color);
    font-size:10px;
    font-weight:600;
    letter-spacing:0.04em;
    text-transform:uppercase;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:2px;
    gap:2px;
    transition:ease-in-out .3s;
    overflow:hidden;
}
header .lang-switcher .toggle-switch{
    min-width:70px; 
}
header .toggle-switch::before{
    content:"";
    position:absolute;
    top:3px;
    bottom:3px;
    width:calc(50% - 5px);
    border-radius:999px;
    background-color: var(--control-active-color);
    transition:ease-in-out .3s;
    left:3px;
}
header .toggle-switch[data-active-side="right"]::before{
    left:calc(50% + 1px);
}
header .toggle-switch .switch-option{
    flex:1;
    text-align:center;
    pointer-events:none;
    position:relative;
    z-index:1;
    opacity:.55;
    transition:ease-in-out .3s;
}
header .toggle-switch[data-active-side="left"] .switch-option:first-of-type,
header .toggle-switch[data-active-side="right"] .switch-option:last-of-type{
    opacity:1;
}
header .toggle-switch:hover{
    background-color: var(--control-active-color);
}
header .toggle-switch:focus-visible{
    outline:2px solid var(--accent-color);
    outline-offset:2px;
}

header .control-button{
    min-width:54px;
    height:26px;
    border-radius:999px;
    background-color: var(--control-surface-color);
    color: var(--accent-color);
    font-size:10px;
    font-weight:600;
    letter-spacing:0.04em;
    text-transform:uppercase;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:0 8px;
    transition:ease-in-out .3s;
}
header .control-button:hover{
    background-color: var(--control-active-color);
}
header .control-button:focus-visible{
    outline:2px solid var(--accent-color);
    outline-offset:2px;
}
header .theme-switcher button.is-dark .option-dark{
    opacity:1;
}
header .theme-switcher button:hover{
    background-color: var(--control-active-color);
}
header .theme-switcher button:focus-visible{
    outline:2px solid var(--accent-color);
    outline-offset:2px;
}
section#main{
    display:flex;
    flex-direction:row;
    flex-wrap:wrap;
    justify-content:space-between;
    align-items:flex-start;
    align-content:stretch;
    gap:24px;
} 

section#main section.left{
    flex:1;
    width:100%;
    min-width:200px;
}
section#main section.left img.avatar{
    width:100%;
    height:auto;
    margin-bottom:24px;
    border-radius:18px; 
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.75);
    filter: var(--profile-pic-filter);
    aspect-ratio: 3 / 4;
    object-fit: cover;
}
section#main section.left div.summary{
    width:100%;
    font-size:14px;
    letter-spacing:-.5px;
    margin-bottom:24px;
}
section#main section.left div.summary p{
    display:block;
    margin-bottom:15px;
    font-weight:300;
}
section#main section.left div.summary p:first-of-type{
    font-weight:500; 
}
section#main section.left ul{
    display:flex;
    flex-direction:row;
    flex-wrap:wrap;
    gap:10px;
    list-style-type: none;
    padding-left:0px;
    margin-bottom:24px;
}
section#main section.left ul li{
    flex: 1 1 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction:column;
    font-size:12px;
    text-align: center;
} 
section#main section.left ul li span:last-of-type{
    opacity:.75;
    font-weight:600;
    font-size:14px;
    letter-spacing: -1px;
}
section#main section.left ul li svg{
    width:36px;
    height:36px;
    margin-bottom:5px;
    opacity:.75;
}
section#main section.right{
    flex: 2;
    width:100%;
    min-width:300px;
}
section#main section.right section.experience{
    margin-bottom:20px;
}
section#main section.right section.experience ul, section#main section.right section.education ul, section#main section.right section.projects ul{
    list-style-type: none;
    padding-left:0px;
}
section#main section.right section.experience ul li, section#main section.right section.education ul li, section#main section.right section.projects ul li{
    margin-bottom:25px;
}
section#main section.right section.experience ul li div.meta, section#main section.right section.education ul li div.meta, section#main section.right section.projects ul li div.meta{
    margin-bottom:5px;
    margin-top:5px;
}
section#main section.right section.experience ul li div.meta span, section#main section.right section.education ul li div.meta span, section#main section.right section.projects ul li div.meta span{
    font-weight:700;
}
section#main section.right section.experience ul li div.meta time:first-of-type:before, section#main section.right section.education ul li div.meta time:first-of-type:before, section#main section.right section.projects ul li div.meta time:first-of-type:before{
    content:"from: ";
    font-size:10px;
}
section#main section.right section.experience ul li div.meta time:last-of-type:before, section#main section.right section.education ul li div.meta time:last-of-type:before, section#main section.right section.projects ul li div.meta time:last-of-type:before{
    content:"to: ";
    font-size:10px; 
}
section#main section.right section.experience ul li div.meta time, section#main section.right section.education ul li div.meta time, section#main section.right section.projects ul li div.meta time{
    opacity:.5;
}
section#main section.right section.experience ul li p, section#main section.right section.education ul li p, section#main section.right section.projects ul li p{
    line-height:1.5em;
    font-size:12px;
    letter-spacing: -.5px;
    font-style:italic;
    opacity:.75;
}
footer{
    width:100%;
    height:100px;
    margin-top:20px;
    border-top:5px solid var(--accent-color);
    padding-top:10px;
    display:flex;
    flex-direction:row;
    flex-wrap:wrap;
    justify-content:space-between;
    align-items:flex-start;
    font-family: var(--header-font-family);
    color: var(--accent-color);
}
footer span, footer a{
    opacity:.5;
}
.noscript-warning{
    background-color: var(--control-surface-color);
    color: var(--name-color);
    border-radius:12px;
    padding:12px 16px;
    margin-bottom:16px;
    font-weight:600;
    text-align:center;
}
@media print {
    .noprint {
        visibility: hidden;
    }
    header h1::after {
        visibility: hidden;
    }
}