@font-face {
    font-family: "Steps Mono";
    src: url("fonts/Steps-Mono.woff") format("woff"),
        url("fonts/Steps-Mono.otf") format("opentype");
    font-weight: 400;
}

@font-face {
    font-family: "Steps Mono";
    src: url("fonts/Steps-Mono-Thin.woff") format("woff"),
        url("fonts/Steps-Mono-Thin.otf") format("opentype");
    font-weight: 100;
}

@font-face {
    font-family: "Kyle Mono";
    src: url("fonts/KyleMono-RegularItalic.woff") format("woff");
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: "Kyle Mono";
    src: url("fonts/KyleMono-BoldItalic.woff") format("woff");
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: "DSE Typewriter";
    src: url("fonts/dse-typewriter-font-ah.ttf") format("Truetype");
    font-weight: 400;
}

body {
    margin: 50px;
    background-color: #fff;
}

body.no-overflow {
    overflow: hidden;
}

body.dark {
    background-color: #000;
}

p {
    font-family: "DSE Typewriter", monospace;
    font-size: 20px;
    font-weight: 400;
    /*font-style: italic;*/
    line-height: 23px;
    margin: 0;
    hyphens: auto;
}

body.dark p,
.axis-title {
    color: #000;
    filter: invert(1);
    mix-blend-mode: difference;
}

a {
    color: #002aff;
    text-decoration-thickness: 1.2px;
    text-underline-offset: 3px;
}

.hidden {
    display: none;
}

.grid {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100vw - 80px);
    height: calc(100vh - 80px);
    fill: none;
    stroke: #000;
    filter: invert(1);
    mix-blend-mode: difference;
    stroke-width: 1.2px;
}

.axis-title {
    position: fixed;
    white-space: nowrap;
}

.axis-title.top {
    left: 50%;
    top: 10px;
    transform: translateX(-50%);
}

.axis-title.bottom {
    left: 50%;
    bottom: 10px;
    transform: translateX(50%);
    rotate: 180deg;
}

.axis-title.left {
    left: 10px;
    top: 50%;
    transform: translateY(50%);
    writing-mode: vertical-rl;
    rotate: 180deg;
}

.axis-title.right {
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
}

.objects {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(calc(100vw - 80px) * 0.8333);
    height: calc(calc(100vh - 80px) * 0.8333);
}

.object {
    position: absolute;
    width: 16vw;
    max-width: 200px;
    aspect-ratio: 1 / 1;
    transform: translate(-50%, -50%);
    cursor: none;
    filter: brightness(1);
    transition: filter 0.1s;
    will-change: filter;
}

.object:hover {
    z-index: 1;
    filter: brightness(0);
}

.tooltip {
    position: fixed;
    z-index: 2;
    transform: translate(-50%, -50%);
    filter: invert(1);
    mix-blend-mode: difference;
    pointer-events: none;
    white-space: nowrap;
}

/**/

.columns {
    display: flex;
    flex-wrap: nowrap
}

.col.text {
    flex: 38%;
}

.col.text p {
    position: fixed;
    max-width: calc(calc(calc(100% - 100px) * 0.38) - 10px);
}

.col.media {
    flex: 62%;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    flex-wrap: wrap;
}

.col img,
.col video {
    max-width: 100%;
    max-height: 1000px;

}

@media screen and (max-width: 1200px) {
    .columns {
        display: block;
    }

    .col.text p {
        position: relative;
        max-width: 100%;
    }

    .col.text {
        margin-bottom: 23px;
    }
}

/*breakpoint 1600px*/
/*breakpoint 700px*/

@font-face {
    font-family: 'Cooper Hewitt';
    font-weight: bold;
    src: url(fonts/CooperHewitt-Bold.otf) format('opentype');
}

.overlay {
    font-family: 'Cooper Hewitt', sans-serif;
    text-align: center;
    text-transform: uppercase;
    padding-top: 0.3em;
    font-size: 12vw;
    line-height: 1em;
    letter-spacing: -0.02em;
    position: fixed;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    width: 100%;
    overflow: visible;
}