:root {
    --thebg: rgb(10, 10, 10);
    --thepink: rgba(230, 0, 230, 1);
    --theyellow: rgba(230, 230, 0, 1);
}

* {
    padding: 0;
    margin: 0;
}

html, body {
    height: 100%;
}

body {
    background: var(--thebg);
    color: #FFF;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 0.2rem;
    line-height: 1.5;
    overflow:hidden;
}

#canvas-renderer {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 100%;
    min-width: 100%;
    z-index: 500;
    background-color: rgb(26, 77, 216);
}

/*#canvas-player, #canvas-player-reference {*/
#canvas-player, #canvas-player-reference {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto auto auto 10%;

    width: 33vw;
    height: 33vw;

    z-index: 501;
    background-color: #585858;
    border-radius: 50%;
    border: 5px solid #F00;

    opacity: 0;
    transition: all 0.2s;
}

#canvas-player-reference {
    z-index: 499;
}

#canvas-player.show, #canvas-player-reference.show {
    opacity: 1;
}