/* General layout */
body {
    margin: 0px;
    background: #000;
}

* {
    touch-action: manipulation;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}

#data {
    height: 200px;
    width: 250px;
    /*background: #111;*/
    margin: 0 0;
    position: relative;
}

#counter {
    color: rgba(255,255,255,7);
    padding: 20px 0 0 5px;
}

p {
    margin: 0;
    padding: 0;
    height: 1px;
    width: 1px;
    background: rgba(255,255,255,1);
    overflow: hidden;
    position: absolute;
}

p.point-a {
    top: 0;
    left: 50%;
}

p.point-b {
    bottom: 0;
    left: 0;
}

p.point-c {
    bottom: 0;
    right: 0;
}

p.first-random-point {
    visibility: hidden;
    /*background: red;*/
}