* { padding: 0; margin: 0;}

div, textarea, a, body { display: flex; }

a { text-decoration: none; }

body 
{
    position: relative;
    background-color: #181818;
    height: 100vh;
    width: 100vw;
    overflow:hidden;
}

#map
{
    position: absolute;
    display: block;
    width: 100vw;
    height: 100vh;
}

#scene
{
    position: absolute;
    transition: all 100ms ease;
    width:  4096px;  
    height: 4096px;
    inset: 0;
    transition: all 50ms ease;
    background-image: url("/images/foundation.png");
    background-size: 4096px 4096px;
}

#graph
{
    width:  4096px;  
    height: 4096px;
   
}

.waypointLabel
{
    position: absolute;
    width: fit-content;
    height: fit-content;
    padding: 5px 10px 5px 10px;
}