#chessboard {
    width: min(80vw, 80vh);
}

#layout {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#metadata {
    font-size: 2rem;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: 100%;
}

#gameLost {
    font-size: 2rem;
    display: none;
    color: red;
}

#timeEnded {
    font-size: 2rem;
    display: none;
    color: green;
}

button {
    font-size: 2rem;
    padding: 10px;
    margin: 20px;
}

body {
    overflow: hidden;
}