<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url(reset.css);

:root {
    /* COLORS */
    --color-black: #000000;
    --color-white: whitesmoke;

    /* SPACING */
    --space-big: 40px;
    --space-medium: 20px;
    --space-small: 10px;
    --space-minus: 5px;

    /* STYLES */
    --fs-title: 22px;
    --lh-title: 110%;

    --fs-body: 18px;
    --lh-body: 110%;

    /* MISCELANIOUS */
    --max: 500px;
    /* --transition: all .3s ease-in-out; */
}


/******************* HTML *******************/
html {
    scroll-behavior: smooth;
}

body {
    font-family: "Arial Rounded MT Bold", "Helvetica Rounded", Arial, sans-serif;
    background-color: var(--white);

    font-size: var(--fs-body);
    line-height: var(--lh-body);
}

/******************* TITLES *******************/
h1 {}

h2 {
    font-size: var(--fs-title);
    line-height: var(--fs-title);
    font-weight: 400;
    max-width: var(--max);
    margin-top: var(--space-medium);
    text-transform: uppercase;
    text-align: center;
}

h3 {
    font-size: var(--fs-title);
    line-height: var(--fs-title);
    font-weight: 400;
    padding: var(--space-big) var(--space-medium);

    position: sticky;
    top: 0;
    width: 100%;
    height: fit-content;
}

p {
    font-size: var(--fs-body);
    line-height: var(--lh-body);
    font-weight: 400;
    max-width: var(--max);
}

.hidden {
    visibility: hidden;
    opacity: 0;
    margin: 0;
    width: 100% !important;
}

/******************* INTRO *******************/
.intro {
    height: fit-content;
    width: 100vw;
    padding: var(--space-medium);
    padding-top: var(--space-big);
    min-height: calc(var(--vh, 1vh) * 100);

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    scroll-margin-top: var(--space-big);
    opacity: 0;
    transition: all .8s ease-in-out;
}

.introFade {
    opacity: 1;
    transition: all .8s ease-in-out;
}

.intro #introduction {
    width: 50%;
    max-width: var(--max);
}

/******************* HEADER *******************/
.header {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--space-small);
}

.header a {
    color: black;
    text-decoration-color: black;
    text-decoration-line: underline;
    text-decoration-style: dotted;
}

.header a:hover {
    text-decoration-style: solid;
}

.header&gt;div {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.header&gt;div&gt;div {
    display: flex;
    flex-direction: column;
}

.header&gt;div&gt;div:nth-child(1) {
    text-align: left;
}

.header&gt;div&gt;div:nth-child(2) {
    text-align: center;
}

.header&gt;div&gt;div:nth-child(3) {
    text-align: right;
}



/******************* LINES *******************/
.lines {
    display: flex;
    gap: var(--space-minus);
    position: fixed;
    justify-content: start !important;
    top: 0;
    z-index: 999;
    padding: 12px var(--space-medium) var(--space-small) var(--space-medium);
    width: 100%;

    transform: translateY(-100%);
    transition: all .5s ease-in-out;
}

.introLines {
    transform: translateY(0);
    transition: all .5s ease-in-out;
}

.lines a {
    width: 100%;
}

.lines img {
    width: 100%;
    opacity: .2;
}

.lineSelected {
    opacity: 1 !important;
}

/******************* ProjectScreen *******************/
.projectScreen {
    width: 100vw;
    height: 100lvh;
    background-color: var(--color-black);
    color: var(--color-white);

    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
}

.projectScreen div {
    position: sticky;
    top: 0;
    width: 50%;
    max-width: var(--max);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-small);
    padding: var(--space-medium);
    text-align: center;
}

/* COLOPHON */
.colophon {
    display: flex;
    justify-content: space-between;
    padding: calc(var(--space-small)* 1.5) var(--space-small);
    width: fit-content;
    background-color: gainsboro;
    flex-direction: column;
    margin: auto;
    border-radius: 20px 20px 0 0;
    justify-items: center;
    align-items: center;
    gap: var(--space-small);
}

.colophon a {
    color: white;
    text-decoration: none;
}

.colophon a:hover {
    color: black;
}</pre></body></html>