@font-face {
    font-family: myFirstFont;
    src:
        url('../D-DIN.otf')
        format('opentype');
}

body {
    margin: 0;
    padding: clamp(24px, 5vw, 48px);
    font-family: myFirstFont;
    font-size: 15px;
    line-height: 1.6;
    background: #ffffff;
    color: #000000;
}

html,
body,
a,
button {
    cursor: none;
}

.particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

.project-page {
    width: 100%;
    max-width: none;
    margin: 0;
}

.back-link {
    display: inline-block;
    margin-bottom: 32px;
    color: inherit;
    text-decoration: none;
}

.back-link:hover {
    text-decoration: underline;
}

h1 {
    margin: 0 0 10px;
    font-size: 35px;
    font-weight: normal;
}

p {
    margin: 0 0 16px;
    max-width: 100%;
}

.project-gallery {
    display: grid;
    gap: 24px;
    margin-top: 24px;
}

.project-image {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    height: auto;
    object-fit: cover;
    object-position: center;
    background: #f3f3f3;
}

.project-intro {
    max-width: 72ch;
}

.knitting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 200px));
    gap: 18px;
    justify-content: start;
    margin-top: 32px;
}

.knitting-tile {
    width: 200px;
}

.knitting-canvas {
    width: 200px;
    height: 200px;
    background: #fbfbf8;
    overflow: hidden;
}

.knitting-caption {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.4;
}

.knitting-canvas canvas {
    display: block;
}

.performance-page {
    max-width: 980px;
    margin: 0 auto;
}

.performance-back-link {
    color: #ff4f6d;
    font-size: 2.6em;
    font-weight: 100;
    opacity: 0.62;
    line-height: 1;
}

.performance-label {
    margin-bottom: 4px;
}

.performance-heading {
    display: block;
}

.performance-heading h1 {
    margin-bottom: 0;
}

.performance-media {
    margin-top: 72px;
}

.performance-image {
    display: block;
    width: min(100%, 420px);
    height: auto;
    margin: 0 auto;
}

.performance-image-secondary {
    margin-top: 24px;
}

.performance-video-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 320px));
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
}

.performance-video {
    display: block;
    width: 100%;
    aspect-ratio: 9 / 16;
    height: 568px;
    object-fit: contain;
    background: #000000;
}

@media (max-width: 760px) {
    .performance-video-grid {
        grid-template-columns: minmax(0, 320px);
    }
}

@media (max-width: 380px) {
    .performance-video-grid {
