body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background-color: #f0f0f0;
    overflow: hidden;
    position: relative;
    font-family: 'Fira Mono', 'Consolas', 'Monaco', monospace;
    color: #1a1a1a;
    background: #f5f5f5;
    overflow-x: hidden;   
}


#page-title {
    position: relative;
    top: 10%;
    left: 0;
    width: 100%;
    height: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(0.15rem, 10vw, 3.2rem);
    text-align: center;
}


#links-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    box-sizing: border-box;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: env(safe-area-inset-bottom, 16px);
}
#links {
    position: relative;
    height: 60%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1rem, 8vh, 3.2rem);
}

#links-bg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#links-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.signpost-link {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    max-width: 80%;
    width: max-content;
    pointer-events: auto;
    background: transparent;
    padding: 2px 8px;
    border-radius: 8px;
    font-size: clamp(0.5rem, 4.5vh, 3rem);
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: box-shadow 0.2s;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.signpost-link a {
    color: #111111;
    text-decoration: none;
}
.signpost-link a:hover {

    color: #e4e4e4;
    background: #21212177;
    text-decoration: underline;
}
.signpost-link-1 {
    top: 5%;
    transform: translateX(-50%) rotate(-1.35deg);

}
.signpost-link-2 {
    top: 33.5%;
    transform: translateX(-50%) rotate(1.6deg);
}
.signpost-link-3 {
    top: 47%;
    transform: translateX(-50%) rotate(-6.5deg);
}
.signpost-link-4 {
    top: 74%;
    transform: translateX(-50%) rotate(2.25deg);
}

#links-bg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}



#visitorContainer {
    position: fixed;
    top: 0;
    left: 0;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    /* allow clicks to pass through */
    pointer-events: none;
}

#visitor {
    top: 0;
    left: 0;
    display: none;
    transform-origin: top left;    
}   
