@import url('fonts.css');

body {
    margin: 0;
    padding: 0;
    font-family: 'Silkscreen';
    font-weight: 300;
    background: #121212;
    overflow: hidden;
    color: white;
}

.container {
    width: 100vw;
    height: 100vh;
}

#graph-container {
    width: 100%;
    height: 100%;
}

text {
    font-family: 'Silkscreen';
    stroke-width: 0.09;
    stroke: white;
    fill: white;
}

.node {
    cursor: pointer;
}

.link {
    stroke: #555;
    stroke-width: 1.5px;
    opacity: 0.6;
}

.node text {
    font-size: 24px;
    pointer-events: none;
}

circle {
    stroke: #fff;
    stroke-width: 1.5px;
}