*{
    margin: 0;
    padding: 0;
}

body{
    position: relative;
    min-height: 100vh;
    background: #1C2833;
    overflow: hidden;
    font-family: Arial;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}

svg, canvas{
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
}

svg text{
    font-weight: 600;
    pointer-events: none;
}

#notation{
    pointer-events: none;
    position: fixed; 
    font-stretch: condensed; 
    color: #202E3B; 
    font-weight: 1000; 
    text-align: center; 
    text-wrap: nowrap; 
    line-height: 60px; 
    font-size: 12.5vh;
}

svg line{
    stroke: #ffffff;
    stroke-width: 0.5;
}

svg circle{
    fill: #435668;
}

svg circle.debug{
    fill: none;
    stroke: #1f2d3a;
    stroke-width: 1;
}

