@font-face {
    font-family: "Noto Sans";
    src: url("./assets/noto-sans/NotoSans-Regular.ttf") format("truetype");
}

* {
    font-family: "Noto Sans", sans-serif;
}

body {
    margin: 0;
    background: rgb(10, 10, 10);
}

button {
    border: none;
    background: rgb(250, 250, 250);
    color: rgb(10, 10, 10);
}
button:hover {
    cursor: pointer;
    background: rgba(196, 196, 196);
}

#start-div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
}

#settings-div {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    width: 100%;
    padding: 8px;
    background: rgb(50, 0, 50);
}

#cookie-div,
#config-div {
    display: flex;
    align-items: center;
    justify-content: center;
}

#cookie-label,
#cookie-checkbox,
#config-label,
#config-file {
    font-size: 11px;
    color: rgb(250, 250, 250);
}

#cookie-label,
#config-label {
    margin-right: 4px;
}

#cookie-checkbox {
    margin-right: 16px;
}

#play-button {
    border-radius: 8px;
    font-size: 30px;
}

#canvas-div {
    display: none;
}

#canvas {
    touch-action: none;
}
