body {
    margin: 0;
    padding: 0;
    background-color: #d6d3d1;
        cursor: default;
}

.grotesk {
    font-family: "Hanken Grotesk", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.serif {
    font-family: "Instrument Serif", serif;
    font-weight: 400;
}

.title-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.title-text {
    padding-left: 0.3em;
    font-style: italic;
    font-size: 4em;
}

.title-row {
    display: flex;
    flex-direction: row;
    gap: 0.3em;
}

.title-1 {}

.title-2 {}

.full-width-divider {
    width: 100%;
    height: 2px;
    background-color: black;
}

.full-height-divider {
    width: 2px;
    height: 100%;
    background-color: black;
}

.row-box {
    display: flex;
    flex-direction: row;
    justify-items: center;
    justify-content: space-between;
}

.column-box {
    display: flex;
    flex-direction: column;
}

.plain-text {
    font-size: 2em;
}

.light {
    font-weight: 300;
}

.small {
    font-size: 1.5em;
}

.grid-margin {
    margin: 1em;
}

.big {
    font-size: 3em;
}

.link {
    transition: all 0.5s cubic-bezier(.31, 1.52, .55, .99);
    transform-origin: center;
    width: fit-content;
    border-radius: 0.2em;
}

.link:hover {
    transform: scale(1.05);
    text-decoration: underline;
    transition: all 0.2s ease-out;
    cursor: default;
    font-weight: 600;
    background-color: #00000010;
}

.link:active {
    transform: scale(0.95);
    text-decoration: underline;
    transition: all 0.5s cubic-bezier(.31, 1.52, .55, .99);
    cursor: default;
    font-weight: 400;
}

.space-between {
    justify-content: space-between;
}

.follow-cursor{
    transition: transform 0.4s cubic-bezier(.2, .2, 0, 1);
}
.follow-box{
    width: fit-content;
}