#stars {
    top:0px;
    left:0px;
    transform: translate(-50%, -50%) scale(2);
    position: absolute;
    image-rendering: pixelated;
    background-color:rgb(0, 0, 0);
}

#canvas {
    top:0px;
    left:0px;
    transform: translate(-50%, -50%) scale(2);
    position: absolute;
    image-rendering: pixelated;
    background-color:transparent
}

#left {
    position: fixed;
    top:0px;
    left:0px;
    width:50%;
    height: 100%;
}

#fps {
    position: fixed;
    top:0px;
    left:0px;
    pointer-events: none;
    display: none;
}

#pause {
    position: fixed;
    left:50%;
    top:50%;
    padding:10px;
    background-color:#313131;
    transform: translate(-50%, -50%);
    box-shadow: grey 0px 0px 5px 0px;
}

#death {
    position: fixed;
    left:50%;
    top:-50%;
    padding:10px;
    background-color:#313131;
    transform: translate(-50%, -50%) scale(0);
    box-shadow: grey 0px 0px 5px 0px;
    transition-duration: 1s;
    transition-property: top transform;
}

#deathmock {
    font-style: italic;
    color:gray;
    text-align: center;
}

#deathtitle {
    margin-bottom:5px;
}

.button {
    background-color:black;
    padding:10px;
    margin-top:10px;
    margin-bottom:10px;
}

#right {
    position: fixed;
    top:0px;
    left:50%;
    width:50%;
    height: 100%;
}
#upleft {
    position: fixed;
    top:0px;
    left:0px;
    width:50%;
    height: 50%;
}
#upright {
    position: fixed;
    top:0px;
    left:50%;
    width:50%;
    height: 50%;
}

#textholder {
    position: absolute;
    bottom:0px;
    left:0px;
    width:100%;
    /* text-shadow: 2px 2px 0px black; */
    font-size: 400%;
    font-weight: bold;
    color: rgb(0, 0, 0);
    background-color:rgb(255, 255, 255);
    text-align: center;

}

#textcontainer {
    padding:20px;
    opacity: 0;
    transition: opacity 500ms;
}

#timetext {
    font-size: 50%
}

#leftcontroltext {
    position: absolute;
    left:5px;
    top:5px;
    color:black;
    font-weight: bold;
    font-size:50%;
}

#rightcontroltext {
    position: absolute;
    right:5px;
    top:5px;
    color:black;
    font-weight: bold;
    font-size:50%;
}

body {
    background-color: #000000;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    color:white;
    font-family: Arial, Helvetica, sans-serif;
    overflow: hidden;
    /* touch-action: none */
}