body{
    box-sizing: border-box;
    margin: 0;
    width: 100vw;
    height: 100vh;
    background-color: black;
    display: flex;
    justify-content: center;
    /* align-items: center; */
    flex-wrap: wrap;
}
.container{
    width: 100vmin;
    height: 100vmin;
    border: 1px solid black;
}
#game-board
{
    width: 100vmin;
    height: 95vmin;
    display: grid;
    background-color: black;
    grid-template-columns: repeat(10,1fr);
    grid-template-rows: repeat(10,1fr);
    grid-gap: .1rem .1rem;
}
/* .square::before{
    content: attr(data-value);
} */
.square
{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: blanchedalmond;
    font-size: 1.5rem;
    font-weight: bold;
    flex-wrap: wrap;
    overflow: hidden;
    user-select: none;
}
.inputBox
{
    
    background-color: honeydew;
    width: 10vmin;
    height: 10vmin ;
    font: bold;
    color: black;
    overflow:hidden;
}
.player
{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    background-color: brown;
    user-select: none;
    overflow: hidden;
}
.obstacle
{
    background-color: chocolate;
}
.treasure
{
    background-color: gold;
}
.robot
{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    user-select: none;
    overflow: hidden;
    background-color: darkmagenta;
}
.error
{
    color: red;
    font-size: .95rem;
    font-weight: bold;
    height: 5vmin;
    
    background-color: white;
    
}

.display{
    background-color: white;
    width: 25vmin;
    height: 20vmin;
    font-size: .9rem;
    font-weight: bold;
}
.result{
    color: red;
    font-size: 1.2rem;
    font-weight: bold;
}