body {
  background: #008080;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: Arial, sans-serif;
}

.game {
  background: #c0c0c0;
  padding: 10px;
  border: 4px solid;
  border-color: #fff #7b7b7b #7b7b7b #fff;
  width: fit-content;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #bdbdbd;
  padding: 5px;
  margin-bottom: 10px;
  border: 3px solid;
  border-color: #7b7b7b #fff #fff #7b7b7b;
}

.counter {
  background: black;
  color: red;
  font-weight: bold;
  padding: 5px 10px;
  font-size: 20px;
  font-family: monospace;
}

.face {
  background: #bdbdbd;
  border: 3px solid;
  border-color: #fff #7b7b7b #7b7b7b #fff;
  padding: 5px 10px;
  font-size: 20px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(9, 30px);
  grid-template-rows: repeat(9, 30px);
  border: 3px solid;
  border-color: #7b7b7b #fff #fff #7b7b7b;
}

.cell {
  width: 30px;
  height: 30px;
  background: #bdbdbd;
  border: 2px solid;
  border-color: #fff #7b7b7b #7b7b7b #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 18px;
  user-select: none;
}

.revealed {
  background: #dcdcdc;
  border: 1px solid #999;
}

.one { color: blue; }
.two { color: green; }
.three { color: red; }

.revealed-bomb {
    background: red;
}

.grid-button {
    position: fixed;
    text-align: center;
    top: 100px;
}