body {
    margin: 0;
    padding: 0;
    height: 100vh;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    color: white;
    font-family: monospace;
    font-size: 1.5rem;
}
.game {
    display: grid;
    transform: rotateZ(180deg) scaleX(-1);
}
.game img {
    height: 32px;
    width: 32px;
    display: block;
    -webkit-user-drag: none;
    transform: rotateZ(180deg) scaleX(-1);
    user-select: none;
}
.flags {
    display: none;
    align-items: center;
    gap: 8px;
}
.config {
    background-color: #444;
	padding: 5px 20px;
	padding-bottom: 50px;
	border-radius: 5px;
}
button:hover { cursor: pointer; }