body {
    background-color: black;
    margin: 0px;
}

canvas {
    width: 100%;
    height: 100%;
}

#turn-indicator {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 56px;
    height: 56px;
    background-color: white;
    border: 2px solid white;
    border-radius: 50%;
    z-index: 1;
}

#reset-button {
    position: absolute;
    top: 100px;
    right: 25px;
    width: 60px;
    height: 60px;
    z-index: 1;
    display: flex;
}

#reset-button > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#rulebook {
    position: absolute;
    top: 175px;
    right: 25px;
    width: 60px;
    height: 60px;
    z-index: 1;
    display: flex;
}

#rulebook > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#rule-overlay {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    z-index: 1;
    display: none;
    /* display: flex; */
    background-color: rgba(0, 0, 0, 0.8);
}

#n-players {
    position: absolute;
    top: 250px;
    right: 25px;
    width: 60px;
    height: 60px;
    z-index: 1;
    display: flex;
}

#n-players > img {
    width: 100%;
    height: 100%;
    object-fit: contain;

    filter:
        invert(100%)
        invert(17%)
        sepia(95%)
        saturate(7461%)
        hue-rotate(360deg)
        brightness(101%)
        contrast(105%);
}