* {
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
}

.container {
    width: 100%;
    height: 100%;
    display: flex;
}

canvas {
    margin: auto;
    /*width: 800px;
    height: 800px;*/
}

#mode-name {
    color: var(--color-light);
}

#fps {
    position: absolute;
    top: 5px;
    right: 5px;
    color: white;
    font-family: 'Courier New', Courier, monospace;
    display: none;
}

.mode-switch {
    position: absolute;
    left: 50%;
    top: 10px;
    transform: translateX(-50%);
    font-family: consolas;
    text-align: center;
    min-width: 200px;
    padding: 5px;
    border: 1px solid var(--color-site);
    background: var(--color-dark);
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mode-switch button.styled {
    margin: 0;
    width: 10px;
    cursor: pointer;
}

.button-row {
    display: flex;
    flex-direction: row;
    gap: 5px;
}

.button-row > * {
    flex-grow: 1;
}

.button {
    border: 1px solid black;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 50);
    user-select: none;
}
