body{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    cursor: url('cursor-64.png') 32 32, auto;
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden; 
    background-color: var(--background);
    
}

.viewport {
    width: 100%;
    height: 100%;
    overflow: scroll; 
    position: relative;
    cursor: grab;
    
   
    scrollbar-width: none; 
    -ms-overflow-style: none;  
}

.viewport::-webkit-scrollbar {
    display: none; 
}

.viewport:active {
    cursor: grabbing;
}

.world {
    width: 400000px; 
    height: 400000px;
    position: relative;
}

.center-marker {
    position: absolute;
    left: 200000px;
    top: 200000px;
    transform: translate(-50%, -50%);
    text-align: center;
    pointer-events: none;
    z-index: 10;
}

.center-marker h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(255,255,255,0.8);
}

.gallery-item {
    position: absolute;
    width: 250px;
   
    overflow: hidden;
    background-color: #ddd;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, opacity 0.5s ease;
    opacity: 0; /* Start hidden for fade-in */
}

.gallery-item.loaded {
    opacity: 1;
}

.gallery-item:hover {
    transform: scale(2);
    z-index: 5;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

.home {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 999;
}

.home img{
    width: 50px;
    height: 50px;
    display: block;
}
.nav{
    display:flex;
    
    
}

.guides{
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 12px;
    align-items: center;
    z-index: 999; 
}

.guide{
    font-family: "Space Mono", monospace;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: var(--brown);

    text-decoration: none;
}


