<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: 0;
}

::-webkit-scrollbar {
    width: 0;
    height: 0;
    background: transparent;
}

::-webkit-scrollbar-corner {
    background: rgba(0,0,0,0);
  }

body {
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 3vw;
    margin: 0;
}

a {
    text-decoration: none;
    all: unset;
    cursor: pointer;
}

p {
    font-size: 1.5vw;
    line-height: 2vw;
    padding-bottom: 3rem;
}

h1 {
    /* -webkit-text-stroke: 1px white; */
    font-size: 16vh;
    padding: 0 3rem
}

h2 {
    font-size: 2vw;
    margin: 2rem 0;
}

audio {
    width: 100%;
background-color: black;
border-radius: 10px;
margin: 3rem 0;
}

.crossed {
    z-index: 10;
    height: 100%;
    width: 100%;
    position: absolute;
    background-color: red;
    visibility: hidden;
}

.crossed:hover {
    margin: auto;
    background-color: black;
}

.crossed svg {
    width: 100%;
    height: 100%;
}

.side-bar {
    position: absolute;
    height: 100vh;
    left: 0;
    overflow: scroll;
    border: 1px red solid;
    background: white;
    line-height: 1.2vw;
}

.width-zero {
    width: 0;
}

#side-bar h2 {
    line-height: 2vw;
    color: white;
    background: red;
}

.side-bar a:hover {
    color: white;
    background-color: red;
}

.work-container {
    z-index: 2;
    overflow: scroll;
    width: 100vw;
    height: 100vh;
    /* height: 100vh; */
    padding-bottom: 10rem;
    text-align: center;
    background: red;
}

.work-scroll {
    max-width: 800px;
    margin: auto;
    padding-bottom: 20vh
}

.work-container img {
    width: 100%;
    padding-top: 1vh;
}

#note {
    position: fixed;
    height: 33vh;
    bottom: 0;
    padding: 3vh 12vw;
    overflow: scroll;
    width: 100vw;
    background: white;
    border: 20px solid black;
}


.work-note p {
    font-size: 3vw;
    line-height: 4vw;
}

.work-note h2 {
    font-size: 3vw;
    line-height: 4.5vw;
}

.work-note a {
    font-weight: bold;
    text-decoration: underline;
}

.work-close {
    z-index: 10;
    position: sticky;
    cursor: pointer;
    top: 0;
    height: 16vh;
    padding: 0rem;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
}
.work-close svg {
    width: 100%;
    height: auto;
}

.cls-1 {
    fill: #000;
    stroke-width: 0px;
}

.work-close:hover {
    margin: auto;
    background-color: black;
}

.work-close:hover .cls-1, .crossed:hover .cls-1, #mobile-x:hover .cls-1 {
    fill: red;
}

.grid-container {
    display: grid;
    width: 100vw;
    height: 100vh;
    grid-auto-rows: 1fr;
    grid-auto-columns: 1fr;
    right: 0;
    border-left: solid red 1px;
}

.grid-item {
    display: relative;
    cursor: pointer;
    font-size: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.grid-item:hover {
    outline: 10px solid red;
    outline-offset: -10px;
}


.m-white:hover {
    outline: 10px solid white;
    outline-offset: -10px;
}

.close-open {
    position: fixed;
    text-align: left;
    color: black;
    padding: 0 1vw;
    padding-bottom: 1vh;
    cursor: pointer;
    font-size: 5vh;
}

.asleep {
    visibility: hidden;
}

#close {
    visibility: visible;
    bottom: 31vh
}

#open {
    visibility: hidden;
    bottom: 1.5vh
}

.close-open:hover {
    color: red;
    background-color: black;
    outline: none;
}

/* STATE CHANGE */

.side-bar-open {
    width: 50vw;
    padding: 3rem;
    outline: 20px black solid;
    outline-offset: -20px;
    border: none;
}

.grid-shrunk {
    position: absolute;
    width: 50vw;
}

.hidden {
    visibility: hidden
}

.visible {
    visibility: visible
}

/* GRID CONTAINERS */

.grid-container :nth-child(1) {
    color: red;
    grid-column: 1 / 3;
    grid-row: 1 / 1;
}

.grid-container :nth-child(2) {
    color: red;
    grid-column: 3 / 5;
    grid-row: 1 / 3;
}

.grid-container :nth-child(3) {
    color: red;
    grid-column: 5 / 6;
    grid-row: 1 / 3;
}

.grid-container :nth-child(4) {
    color: red;
    grid-column: 6 / 8;
    grid-row: 1 / 2;
}

.grid-container :nth-child(5) {
    color: red;
    grid-column: 8 / 9;
    grid-row: 1 / 2;
}

.grid-container :nth-child(6) {
    color: red;
    grid-column: 1 / 3;
    grid-row: 2 / 4;
}

.grid-container :nth-child(7) {
    color: red;
    grid-column: 1 / 3;
    grid-row: 4 / 5;
}

.grid-container :nth-child(8) {
    color: red;
    grid-column: 3 / 4;
    grid-row: 3 / 5;
}

.grid-container :nth-child(9) {
    color: red;
    grid-column: 4 / 6;
    grid-row: 3 / 5;
}

.grid-container :nth-child(10) {
    color: red;
    grid-column: 6 / 8;
    grid-row: 2 / 4;
}

.grid-container :nth-child(11) {
    color: red;
    grid-column: 8 / 9;
    grid-row: 2 / 4;
}

.grid-container :nth-child(12) {
    color: red;
    grid-column: 6 / 7;
    grid-row: 4 / 5;
}

.grid-container :nth-child(13) {
    color: red;
    grid-column: 7 / 9;
    grid-row: 4 / 5;
}

.grid-container :nth-child(14) {
    color: red;
    grid-column: 1 / 4;
    grid-row: 5 / 7;
}

.grid-container :nth-child(15) {
    color: red;
    grid-column: 4 / 7;
    grid-row: 5 / 6;
}

.grid-container :nth-child(16) {
    color: red;
    grid-column: 4 / 6;
    grid-row: 6 / 7;
}

.grid-container :nth-child(17) {
    color: red;
    grid-column: 7 / 8;
    grid-row: 5 / 6;
}

.grid-container :nth-child(18) {
    color: red;
    grid-column: 6 / 8;
    grid-row: 6 / 7;
}

.grid-container :nth-child(19) {
    color: red;
    grid-column: 8 / 9;
    grid-row: 5 / 7;
}



.earf img {
    max-height: 100%;
}

.max-h img {
    height: unset;
    width: 100%;
    object-fit: cover;
}

.max-w img {
    width: 100%;
}

#mobile-x {
    visibility: hidden;
    display: none;
}

.embed-container {
    position: relative;
    z-index: 0;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    margin-bottom: 2vh;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.pb-100 {
    padding-bottom: 100%;
}

@media screen and (max-width: 1000px) {

    .work-close {
        height: 10vh;
    }

    img {
        width: 100%;
        height: 100%;
    }

    .grid-item img {
        width: 100%;
    }

    h1 {
        font-size: 8vh;
        padding: 0 2rem;
        -webkit-text-stroke: 1px white;
    }

    h2,
    p {
        font-size: 3.5vw;
        line-height: 4vw;
        margin: 1rem 0;
    }

    h2 {
        padding-top: 1.5rem
    }

    p {
        padding-top: 1rem;
        padding-bottom: unset;
    }

    #side-bar h2 {
        line-height: 4vw;
        margin: 2vw 0;
    }

    #note {
        border: 10px solid black;
    }

    .side-bar-open {
        width: 80vw;
        padding: 1rem;
        outline-width: 3px;
        outline-offset: -3px;
        border: none;
    }

    .grid-shrunk {
        width: 20vw;
    }

    .grid-container :nth-child(1) {
        width: 100%;
    }

    .crossed {
        opacity: 0
    }

    #name {
        font-size: 4vw;
    }


    #mobile-x {
        position: fixed;
        display: block;
        cursor: pointer;
        top: 0;
        right: 0;
        height: 100vh;
        width: 20vw;
        /* background-image: url(img/X_3.png); */
        background-color: red;
        z-index: 10;
    }

    #mobile-x svg{
    width: 100%;
    height: 100%;
    }

    #mobile-x:hover,
    #mobile-x:focus {
        margin: auto;
        /* filter: invert(1); */
        /* mix-blend-mode: color; */
        background-color: black;
    }
}</pre></body></html>