/* style.css */
@font-face {
    font-family: 'VCR_OSD_Mono';
    src: url('/fonts/VCR_OSD_MONO_1.001.woff2') format('woff2'),
         url('/fonts/VCR_OSD_MONO_1.001.woff') format('woff'),
         url('/fonts/VCR_OSD_MONO_1.001.ttf') format('truetype');
}

@font-face {
    font-family: 'iAWriterQuattroS-Bold';
    src: url('/fonts/iAWriterQuattroS-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'iAWriterQuattroS-Italic';
    src: url('/fonts/iAWriterQuattroS-Italic.ttf') format('truetype');
}

@font-face {
    font-family: 'iAWriterQuattroS-Regular';
    src: url('/fonts/iAWriterQuattroS-Regular.ttf') format('truetype');
    font-display: swap;
}

:root {
    --color-title: #FAF8F6;
    --color-base: #FFF5ED;
    --color-muted: #afa6a0;
    --color-fade: #8A7D73;
    --color-border: #282523;
    --color-background: #161616;
}

::selection {
    color: var(--color-background); /* Use the muted color variable */
    background: var(--color-base); /* Optional: Set the background color of the selection */
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'iAWriterQuattroS-Regular', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--color-background);
    color: var(--color-base);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden; 
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;


}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
    font-weight: inherit;
    font-size: inherit;
    color: inherit;
    text-transform: none;
    font-family: 'iAWriterQuattroS-Regular';
    color: var(--color-muted);
    font-size: 14px;
}

h3 {
    
    font-size: 13px;
    color: var(--color-fade);
    font-family: 'iAWriterQuattroS-Regular', sans-serif;
    padding-bottom: 0px;
    margin-bottom: -5px;
}


a {
    text-decoration: none; /* Remove underline from links */
    color: var(--color-base); /* Optional: Set default link color */
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 100px;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(5px);
}


@media (max-width: 768px) {
    header {
        padding: 20px; /* Adjust padding for smaller screens */
    }
}
.intro-img {
    width: 100%;
}

.content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    flex-grow: 1;
    font-size: 14px;
}

footer {
    color: #aaa;
    padding: 100px 0px;
    margin-top: auto;
    font-size: 13px;
}

footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    text-decoration: underline;
}

@media not all and (min-resolution:.001dpcm) { 
    @supports (-webkit-appearance:none) and (not (stroke-color:transparent)) {
        nav a {
            font-family: 'VCR_OSD_Mono', monospace !important;
        }
    }
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
    @font-face {
        font-family: 'VCR_OSD_Mono';
        src: url('fonts/VCR_OSD_MONO_1.001.svg#VCR_OSD_Mono') format('svg');
    }
}

.experience {
    margin-top: 60px;
    margin-bottom: 60px;
}

.experience a {
    color: #BFB3AA;
}

a {
    color: #BFB3AA;
}

.muted {
    color: var(--color-muted);
}

.fade {
    color: var(--color-fade);
}

/* New .intro class */
.intro {
    color: var(--color-title);
    font-size: 16px;
    line-height: 24px;
}

.content {
    margin-top: 120px;
}

.muted-color path {
    fill: var(--color-muted);
}


