<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*CSS DOCUMENT*/

html, body, div, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0; 
    padding: 0; 
    border: 0; 
    font-size: 100%; 
    font: inherit;
}

/* Transitions */

html {
    scroll-behavior: smooth;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .7s ease-out, transform .7s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Cursor */
html {
    cursor: url('wii-open-ccw.cur'), url('wii-open-ccw.png'), auto;
}

a, button, .clickable {
    cursor: url('wii-pointer-ccw.cur'), pointer;
}

body {
    cursor: none;
}

.custom-cursor {
    position: fixed;
    width: 32px;
    height: 32px;
    pointer-events: none;
    z-index: 9999;
    display: none;
    will-change: transform;
    transform: translate(-50%, -50%);
}

.custom-cursor-default {
    background-image: url('wii-open-ccw.cur');
    background-size: cover;
}

.custom-cursor-hover {
    background-size: cover;
}

/*Font Styles*/
@font-face {
    font-family: helveticareg;
    src: url(Helvetica\ Neue\ LT\ Pro\ 55\ Roman.ttf);
}

@font-face {
    font-family: helveticabold;
    src: url(Helvetica\ Neue\ LT\ Pro\ 75\ Bold.ttf);
}

h2 {
    font-family: helveticabold;
    font-size: 66px;
    line-height: 70px;
    letter-spacing: -2px;
}

h3 {
    font-family: helveticareg;
    font-size: 40px;
    letter-spacing: -2px;
}

h4 {
    font-family: helveticabold;
    font-size: 28px;
}

p {
    font-family: helveticareg;
}

.bold {
    font-weight: bold;
}

/* Parent Container Styles */
body {
    background-color: rgb(255, 255, 255);
    animation: fade-in 2s forwards;
}

/* Nav */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    padding: 10px 30px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(16px);
    border-radius: 40px;
    z-index: 1000;
    margin: 0 auto;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.15);
}

.logo {
    margin: 0;
    padding: 0;
    height: 50px;
}

.logo img {
    height: 100%;
}

.nav-items {
    display: flex;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
}

li {
    float: none;
}

li a {
    display: block;
    color: rgb(0, 0, 0);
    text-align: center;
    padding: 0px 18px;
    text-decoration: none;
    font-family: helveticareg;
    font-size: 16px;
}

li a:hover {
    color: rgb(110, 110, 110);
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-color: rgb(255, 255, 255);
}

.hero-items-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    margin: 100px 0 10px;
    align-items: center;
    justify-content: center;
}

/* Intro */
.intro, .intro-model {
    flex: 0 1 auto;
    max-width: 40%;
}

.intro-model {
    flex: 1;
    min-height: 400px;
    position: relative;
    overflow: hidden;
    margin: 0 0 100px 0;
}

spline-viewer {
    width: 100%;
    height: 100%;
    min-height: 500px;
    position: absolute;
    top: 0;
    left: 0;
}

.intro {
    padding: 0 0 0 80px;
}

.intro h2 {
    padding-left: 10px;
}

.intro h3 {
    margin: 10px 0 0 10px;
}

/* Projects */
.project-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.project-container {
    background-color: rgb(255, 255, 255);
    margin: -80px 0px 0px;
    padding: 150px 40px 50px;
}

.project {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 200px;
    background: rgb(255, 255, 255);
    backdrop-filter: blur(16px);
    margin: 20px 70px;
    padding: 20px 50px;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.project img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
}

.project-video embed {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
}

.project-container h3 {
    margin-left: 70px;
}

.project h4 {
    line-height: 30px;
    font-size: 24px;
}

.project p {
    margin-top: 10px;
    font-size: 15px;
}

/* About */
.about-container {
    background-color: rgb(255, 255, 255);
    margin: 0px 70px 0px;
    padding: 150px 40px 50px;
}

.about-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40px;
    margin: 10px 0;
    
}

.about-container h4 {
    margin-top: 5px;
    font-size: 25px;
}

.about-container p {
    font-size: 22px;
    margin: 0 200px 12px 0;
}

/* Contact */
.contact-container {
    background-color: rgb(255, 255, 255);
    margin: 100px 110px 0px;
    padding-top: 100px;
    padding-bottom: 180px;
}

.contact-container h3 {
    margin-bottom: 20px;
}

.contact-container h4 {
    font-size: 40px;
    margin-bottom: 40px;

}

.contact-container p {
    font-size: 28px;
}

p.contact a {
    text-decoration: none;
    font-family: helveticabold;
    color: rgb(0, 0, 0);
    opacity: 50%;
}

p.contact a:hover {
    text-decoration: underline;
    opacity: 100%
}

/* Footer */
footer {
    padding: 20px;
    backdrop-filter: blur(2px);
}

footer p {
    font-size: small;
    margin-bottom: 18px;
    opacity: 50%;
}

.left {
    float: left;
}

.right {
    float: right;
}

/* General adjustments for tablets and smaller */
@media (max-width: 1024px) {
    
    /* Projects */
    .project {
        gap: 100px;
        margin: 20px 40px;
    }
    
    /* About */
    .about-container p {
        margin-right: 100px;
    }
}

/* Tablet */
@media (max-width: 768px) {

    /* Nav */
    .nav {
        width: 80%;
    }

    /* Hero */
    .hero-items-container {
        flex-direction: column;
        margin: 150px 0 50px;
    }
    
    .intro {
        max-width: 70%;
        font-size: 30px;
    }

    .intro-model {
        max-width: 90%;
        width: 90%;
        min-height: 240px;
        margin-bottom: 50px;
    }

    h2 {
        font-size: 80px;
        line-height: 80px;
    }
    
    spline-viewer {
        min-height: 300px;
    }

    /* Projects */
    .project {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .project-container {
        margin-left: 30px;
        margin-right: 30px;
    }
    
    /* About */

    .about-container {
        margin-left: 30px;
        margin-right: 30px;
    }

    .about-container p {
        margin-right: 0;
        font-size: 18px;
    }
    
    /* Contact */
    .contact-container {
        margin-left: 50px;
        margin-right: 50px;
    }
}

/* Mobile */
@media (max-width: 540px) {

    /* Text Styles */
    h2 {
        font-size: 60px;
        line-height: 60px;
    }
    
    h3 {
        font-size: 30px;
        letter-spacing: -1px;
    }
    
    h4 {
        font-size: 24px;
    }
    
    /* Nav */
    .nav {
        width: 80%;
        padding: 10px 15px;
    }
    
    .logo {
        height: 40px;
    }
    
    li a {
        padding: 0 10px;
        font-size: 14px;
    }

    /* Hero */
    .hero-items-container {
        margin: 120px 0 0;
    }
    
    .intro {
        max-width: 80%;
        padding: 0 20px !important;
        text-align: center;
        margin: 0 auto;
    }

    .intro h2 {
        font-size: 50px;
        line-height: 50px;
    }
    
    .intro h2, 
    .intro h3 {
        text-align: center;
        padding-left: 0 !important;
        margin-left: 0 !important;
    }
    
    .intro h3 {
        margin-top: 20px !important;
        font-size: 20px;
    }
    
    .intro-model {
        min-height: 192px;
    }
    
    spline-viewer {
        min-height: 250px;
    }
    
    /* Projects */
    .project-container {
        margin-left: 15px;
        margin-right: 15px;
        padding-top: 70px;
        margin-top: 10px;
        text-align: center;
    }

    .project-container h3 {
        padding: 40px 0;
        letter-spacing: -1px;
        margin-left: 0;
    }
    
    .project {
        margin: 20px 0;
        padding: 20px;
    }

    .project h4 {
        font-size: 18px;
    }

    .project-description p {
        display: none;
    }
    
    /* About */
    .about-container {
        margin-left: 15px;
        margin-right: 15px;
        padding-top: 100px;
        text-align: center;
    }

    .about-container p {
        font-size: 16px;
    }

    .about-container h4 {
        font-size: 16px;
        margin-top: 18px;
    }
    
    /* Contact */
    .contact-container {
        text-align: center;
        margin-top: -40px;
    }
    
    .contact-container h4 {
        font-size: 30px;
    }
    
    .contact-container p {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    /* Footer */
    footer p {
        font-size: 12px;
    }
    
    .left, 
    .right {
        float: none;
        display: block;
        text-align: center;
    }
}
</pre></body></html>