<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --dark-brown: #463f3a;
    --medium-brown: #8a817c;
    --light-brown: #bcb8b1;
    --off-white: #f4f3ee;
    --salmon: #e0afa0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--off-white);
    color: var(--dark-brown);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.2rem;
    position: relative;
}

header {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 1.8rem;
    padding: 0.6rem;
    text-align: center;
}

.logo {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--dark-brown);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 0.9rem;
}

.logo span {
    color: var(--salmon);
}

.tagline {
    font-size: 1.2rem;
    color: var(--medium-brown);
    margin-top: 0.45rem;
}

.container {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    padding: 0 1.2rem;
    margin-bottom: 2.7rem;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--dark-brown);
}

.section {
    margin-bottom: 2.7rem;
}

.section-title {
    font-size: 1.5rem;
    color: var(--medium-brown);
    margin-bottom: 1.8rem;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 1.2rem;
}

.link {
    flex: 1 1 300px;
    max-width: 500px;
    text-decoration: none;
    color: var(--dark-brown);
    background-color: var(--off-white);
    border-radius: 12px;
    overflow: visible;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.link.featured {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.link.featured:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--salmon);
}

.other-projects {
    display: flex;
    flex-wrap: wrap;
    gap: 1.8rem;
    justify-content: center;
}

.link.featured .project-image {
    height: 280px;
}

.link.featured .project-content {
    padding: 0.9rem;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: fit-content;
    overflow: visible;
}

.link.featured .project-title {
    font-size: 2rem;
    margin-bottom: 0.9rem;
    color: var(--dark-brown);
}

.link.featured .project-description {
    font-size: clamp(1rem, 1.1vw, 1.1rem);
    line-height: 1.6;
    color: var(--medium-brown);
    margin-bottom: 0.9rem;
    display: block;
    overflow: visible;
    height: auto;
    opacity: 1;
    visibility: visible;
    flex: 1;
}

.link.featured .github-badge {
    position: absolute;
    bottom: 0.6rem;
    right: 0.6rem;
}

.project-card {
    text-align: left;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 0;
    overflow: visible;
    display: flex;
    flex-direction: column;
}

.project-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-content {
    padding: 0.9rem;
    width: 100%;
    position: relative;
    min-height: fit-content;
    overflow: visible;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.project-title {
    font-size: 1.5rem;
    margin: 0 0 0.45rem 0;
    color: var(--dark-brown);
}

.project-description {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--medium-brown);
    margin: 0;
    display: block;
    overflow: visible;
    height: auto;
    flex: 1;
}

.social-link {
    color: var(--dark-brown);
    text-decoration: none;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--salmon);
    transform: translateY(-2px);
}

.github-badge {
    position: absolute;
    bottom: 0.6rem;
    right: 0.6rem;
    background-color: var(--off-white);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.github-badge i {
    color: var(--dark-brown);
    font-size: 1.2rem;
}

.link:hover {
    transform: translateY(-0.5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--salmon);
}

.link:hover ~ .link,
.link ~ .link:hover {
    filter: blur(2px);
    opacity: 0.8;
}

.link:hover .project-image img {
    transform: scale(1.02);
}

.link:hover .github-badge {
    background-color: var(--salmon);
    transform: translateY(-2px);
}

footer {
    position: fixed;
    bottom: 1.2rem;
    right: 1.2rem;
    z-index: 10;
}

.social-links {
    display: flex;
    gap: 1.35rem;
}

@media (max-width: 599px) {
    .links {
        flex-direction: column;
        align-items: center;
    }
    
    .link {
        width: 100%;
        max-width: 500px;
    }
    
    .logo {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.2rem;
    }
    
    .container {
        padding: 0 1rem;
        margin-bottom: 4rem;
    }
    
    footer {
        bottom: 1.5rem;
        right: 1.5rem;
        background-color: var(--off-white);
        padding: 0.5rem;
        border-radius: 50px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .social-links {
        gap: 1rem;
    }
    
    .project-title {
        font-size: 1.3rem;
    }
    
    .project-description {
        font-size: 0.9rem;
    }
    
    .project-image {
        height: 150px;
    }
    
    .project-content {
        padding: 1rem;
    }
    
    .github-badge {
        width: 28px;
        height: 28px;
        bottom: 0.8rem;
        right: 0.8rem;
    }
    
    .github-badge i {
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .social-link {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .link.featured {
        margin-bottom: 1.5rem;
    }

    .other-projects {
        flex-direction: column;
        align-items: center;
    }

    .link.featured .project-image {
        height: 210px;
    }

    .link.featured .project-content {
        padding: 1.2rem;
    }

    .link.featured .project-title {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }

    .link.featured .project-description {
        font-size: 1rem;
    }
} </pre></body></html>