* {
  box-sizing: border-box;

  margin: 0px;
  padding: 0;

  /* border: solid 1px black; */

  /* min-height: 25px;
  min-width: 25px; */

  font-family: Arial, sans-serif;
  font-size: inherit;
  font-weight: 800;

  color: rgb(204, 133, 177); ;
  background-color: rgb(165, 203, 240);

  border: none;
}

body {
  height: 100vh;
  overflow: hidden;
  /* text-align: center; */

  /* background-color: #c1a8e4; */
}

.header {
  font-size: 1.5rem;
  margin-top: 10px;
}

.header-title {
  margin: 5px auto;

  width: 50vw;

  text-align: center;
}

.main {
  margin-top: 10px;
}

.menu {
  margin: 10px auto;
  padding: 5px;

  /* width: 30vw; */
  max-width: 50vw;
  /* border: 2px solid black; */
}

.selectors-wrapper {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 50px;
}

.selectors-wrapper select{
    border: 1px solid black;
}

.levels {
  margin-top: 10px;

  width: 150px;
  cursor: pointer;
}

.images {
  margin-top: 10px;

  width: 150px;
  cursor: pointer;
}

.buttons-wrapper {
  margin-top: 10px;
}

.buttons-wrapper button{
  border: 1px solid black;
}

.buttons-wrapper select{
  border: 1px solid black;
}

.btn {
  display: block;
  margin: 10px auto;

  width: 150px;

  cursor: pointer;
}

.theme-wrapper {
  margin-top: 10px;

  display: flex;
  justify-content: space-between;
}

.theme-wrapper button {
  width: 45%;
  border: 1px solid black;
}

.light-theme {
  background-color: rgb(165, 203, 240);

  cursor: pointer;
}

.night-theme {
  background-color: black;
  color: rgb(204, 133, 177);
  

  cursor: pointer;
}

.game-wrapper {
  margin-top: 20px;
}

.game-title {
  text-align: center;
}

.game-name {
  margin-top: 10px;
  text-align: center;
  font-weight: 600;
}

.line {
  margin: 10px;
  border-bottom: 1px solid rgb(204, 133, 177);
  /* width: 100px; */
}

.timer {
  margin-top: 10px;
  text-align: center;
}

.game-zone {
  margin: 5px auto;

  display: flex;
  justify-content: center;

}

.block_1_1 {
  width: 30px;
}

.block_1_2 {
  
}

#grid-container {
  display: grid;

  /* justify-content: center; */

  border: 2px solid black;
}

.cell {
  width: 30px;
  height: 30px;
  border: 1px solid black;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;

  background-color: white;
}

.cell.revealed {
  background-color: black;
}

.cell.marked {
  background-color: #ccc;
}

.cell.white {
  background-color: white;
}

.cell.black {
  background-color: black;
}

.cell.cross {
  background-color: white;
}

/* #row-hints {
  display: flex;
  color: red;
  flex-direction: column;

  width: 150px;
} */

#col-hints {
  display: flex;

  color: green;
  flex-direction: row;
  justify-content: center;

  width: 150px;
  height: 30px;
  /* border-bottom: 1px solid black; */
}

.hint {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  font-size: 14px;

  /* border: 1px solid black; */
  border: none;
}