:root { --line-color: black; }
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    height: 100vh;
    font-family: monospace;
    overflow: hidden;
    user-select: none;
    background: url("../img/grid.png");
}
.cursor {
    position: absolute;
    height: 0;
    width: 0;
}
.select {
    display: block;
    position: absolute;
    top: 0; left: 0;
    border: 2px dashed black;
}
#center {
    position: absolute;
    top: 0;
    left: 0;
}
#workspace-cursor {
    position: absolute;
}
#coords {
    position: absolute;
    top: 55px;
    right: 5px;
    color: #555;
}
#version-info {
    position: absolute;
    right: 5px;
    bottom: 0;
    font-family: 'bebas-neue';
    opacity: 0.5;
    letter-spacing: 1px;
    font-size: 2em;
}
.connectPoint {
    position: absolute;
    top: 0; left: 50%;
}
.connectPoint:nth-of-type(2) {
    top: 50%; left: 100%;
}
.connectPoint:nth-of-type(3) {
    top: 100%; left: 50%;
}
.connectPoint:nth-of-type(4) {
    top: 50%; left: 0;
}