body{
    background-color: bisque;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 768px;
    width: 100%;
}
.game_field{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background-color: aquamarine;
    width: 55vh;
    height: 55vh;
    max-height: 465px;
    max-width: 465px;
}

.cell{
    font-size: 15px;
    font-weight: bold;
    margin: 1px;
    width: 42px;
    height: 42px;
}
.mine{
    background-color: red;
  color: white;
  cursor: not-allowed;
}
.active{
    background-color: beige;
}
.wrapper_info{
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 30%;
    height: 90px;
    background-color: #ff9494;
    border: 3px solid #ff6d6d;
    max-width: 465px;
}
span{
    font-size: 24px;
    font-weight: bold;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: rgba(31, 27, 34, 0.664);
}
span:nth-child(3){
    cursor: pointer;
    color: green;
}
.game_over{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 235, 205, 0.651);
}
.game_over > span:first-child{
    font-size: 60px;
    color: black;
    font-weight: bold;
    background-color: #ff006ac5;
}
.game_over > span:nth-child(2){
    cursor: pointer;
    display: inline-block;
    margin-top: 10px;
    color: rebeccapurple;
    font-size: 50px;
}