body {
  background-color: #6692FA;
  font-family: "Amatic SC";
  font-size: 25px;
}

.board-wrapper {
  display: flex;
  flex-direction: column;
}

header {
  text-align: center;
}

p {
  font-size: 30px;
}

div table {
  margin: auto;
  border-spacing: 2px;
}

td {
  overflow: clip;
  max-width: 52px;
  cursor: pointer;
}

.cell-img {
    width: 50px;
    height: 50px;
    overflow: clip;
    max-width: 50px;
}

img {
    width: 45px;
    height: 45px;
    border: 1px solid;
    background-color: #a6a1a1ad;
}

#new-game-btn {
  padding: 10px;
  margin: auto;
  font-family: "Amatic SC";
  font-size: 20px;
  margin-top: 10px;
  width: 110px;
  cursor: pointer;
  z-index: 2;
  transition-duration: 0.2s;
}

.game-end-overlay {
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
}

.game-end-wrapper {
  margin: auto;
  margin-top: 5em;
  text-align: center;
  border: solid;
  padding: 2px;
  width: 251px;
}

.end-content {
  margin: 0px;
}

footer {
  position: absolute;
  left: 0;
  right: 0;
  width: max-content;
  margin: auto;
  font-size: 20px;
  margin-top: 50px;
}

.closed-cell {
  box-shadow: -2px -4px 0px 0px #0006 inset, 2px 2px 0px 0px #FFF7 inset;
	border: 2px solid;
}

.open-cell {
  box-shadow:-3px -2px 0px 0px #0006 , 2px 2px 0px 0px #FFF7;
	border: 2px solid;
  background-color: #fff;
}