* {
    margin: 0;
    user-select: none;
    outline: none;
}
.containerContainer {
    height: 100vh;
    width: 100%;
    overflow: hidden;
    position: absolute;
    background: linear-gradient(to right, transparent 49.8%, black 49.8%, black 50.2%, transparent 50.2%),
                linear-gradient(to top, transparent 49.8%, black 49.8%, black 50.2%, transparent 50.2%);
}
.container {
    height: 100vh;
    width: 100vh;
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    overflow-x: visible;
}
.ponto {
    background: red;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    transform: translate(-50%, 50%);
    position: absolute;
    z-index: 1;
}
.barra {
    background: rgb(50, 0, 0);
    border: none;
    transform: translate(-50%, 50%);
    position: absolute;
}
.controladores {
    position: absolute;
    left: 20px;
    top: 20px;
    z-index: 2;
}
.erro {
    color: red;
    border-color: red;
}
.controladores {
    background: white;
    border: solid 1px black;
    width: fit-content;
    height: fit-content;
    padding: 10px;
}