:root{
    --game_color:green;
    --selected_position:rgba(111, 111, 233, 0.5);
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    position: fixed;
    width: 100%;
    height: 100%;
}
#game{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 50%;
    height: 70%;
    background-color:var(--game_color);
}
.name{
    width: 100%;
    height: 10%;
    text-align: center;
}
#field{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    top:0.7%;
    width: 80%;
    height: 80%;
    background-color: rgb(0, 0, 0);
}
.position{
    background-color: var(--game_color);
    width: 32.9%;
    height: 32.5%;
}
img{
    margin: 4%;
    height: 92%;
    width: 92%;
}
.position:hover{
    background-color: var(--selected_position);
}
.controls{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    height: 10%;
    z-index: 1;
    background-color: var(--game_color);
}
#reload{
    margin: 3px;
    display: none;
}