body {
    margin: 0;
    overflow: hidden;
}

input[type="checkbox"] {
    appearance: none;
    margin: 0;
    border: 1.5px solid rgb(60 60 60);
    display: grid;
    place-content: center;
    padding: 4px;
    color: rgb(225 225 225);
    background-color: rgb(40 40 40);
    cursor: pointer;
}

input[type="checkbox"]::before {
    content: "";
    width: 0.6em;
    height: 0.6em;
    -webkit-clip-path: polygon(13% 50%, 1% 70%, 50% 98%, 100% 13%, 80% 0%, 40% 65%);
    clip-path: polygon(13% 50%, 1% 70%, 50% 98%, 100% 13%, 80% 0%, 40% 65%);
    transform: scale(0);
    transform-origin: center;
    transition: 0.1s transform ease-in-out;
    box-shadow: inset 1em 1em rgb(180 180 180);
    background-color: CanvasText;
}

input[type="checkbox"]:checked::before {
    transform: scale(1);
}

input#spectatorToggle {
    margin: 10px;
    position: absolute;
    opacity: 0.2;
}