<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
    background-color: #f0ebea;
    color: #000;
    font-family: mssansserif;
    font-size: 14px;
    margin: 0;
    padding: 0;
    letter-spacing: 1px;
}

@font-face {
  font-family: mssansserif;
  src: url(mssansserif.ttf);
}

/* New Top and Bottom Rows */
.top-row, .bottom-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 20px;
    gap: 20px;
    border-bottom: 1px solid #000;
    text-transform: uppercase;
    font-size: 10px;
}

.top-row .header-column, .bottom-row .header-column {
    padding: 0px;
    border-right: 0px solid #000;
}

.top-row .header-column:last-child, .bottom-row .header-column:last-child {
    border-right: none;
}

header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 20px;
    border-bottom: 1px solid #000;
    text-transform: uppercase;
}

.header-column {
    padding: 0px;
    border-right: 0px solid #000;
    border-bottom: 1px solid #000; /* Individual horizontal lines */
}

.header-column:last-child {
    border-right: none;
}

.projects-list {
    list-style: none;
    padding: 0;
}

.projects-list li {
    cursor: pointer;
}

.projects-list li:hover {
    text-decoration: underline;
}

.main-content {
    display: grid;
    grid-template-columns: 1.5fr 3fr 1fr; /* Adjusted grid layout */
    gap: 20px;
    padding: 20px;
    border-bottom: 0px solid #000;
}

.bio, .project-display, .right-column {
    border-right: 1px solid #000;
    padding-right: 20px;
}

/* Default display for desktop: show bio text */
.bio-text {

}


.right-column {
    border-right: none;
    width: 80%; /* Narrower width for the right column */
}

.project-image {
    width: 100%;
    height: 450px; /* Increased height */
    background-image: url('default-background.png'); /* Default background image */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    border: 2px solid #000;
    transition: background-image 0.5s ease-in-out; /* Smooth hover animation */
}

.project-details {
    margin-top: 20px;
    padding: 20px;
    border: 1px solid #000;
    background-color: #f9f9f9;
    opacity: 0; /* Hidden by default */
    display: none; /* Hidden by default (removes space) */
    transition: opacity 0.5s ease-in-out; /* Smooth animation */
    position: relative; /* For positioning the close button */
}

.project-details.visible {
    opacity: 1; /* Visible when the class is added */
    display: block; /* Show the element (adds space back) */
}

.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #000;
}

.close-button:hover {
    color: #555; /* Change color on hover */
}

.project-details img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.project-details h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.project-details p {
    font-size: 16px;
    line-height: 1.5;
}

.footer-section {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    border-top: 1px solid #000;
}

.footer-section div {
    border-right: 1px solid #000;
    padding-right: 20px;
}

.footer-section div:last-child {
    border-right: none;
}

/* About Details Section */
.about-details {
    margin-top: 20px;
    padding: 20px;
    border: 1px solid #000;
    background-color: #f9f9f9;
    opacity: 0; /* Hidden by default */
    display: none; /* Hidden by default (removes space) */
    transition: opacity 0.5s ease-in-out; /* Smooth animation */
}

.about-details.visible {
    opacity: 1; /* Visible when the class is added */
    display: block; /* Show the element (adds space back) */
}


/* Subtitle Styling (h3) */
.about-details h3 {
    font-size: 18px;
    margin-top: 15px;
    color: #000;
}

/* Paragraph Styling (p) */
.about-details p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
}

/* Bold Text Styling (strong inside p) */
.about-details strong {
    color: #e44a2b;
    font-weight: bold;
}


/* Toggle Button */
.toggle-details {
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #000;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    font-family: mssansserif;
}

.toggle-details:hover {
    background-color: #555; /* Change color on hover */
}






@media (max-width: 768px) {
    header, .main-content, .footer-section, .top-row, .bottom-row {
        grid-template-columns: 1fr;
    }

    .header-column, .bio, .project-display, .right-column, .footer-section div {
        border-right: none;
    }

    .bio-text {
        display: none;
    }
}
</pre></body></html>