.section{
  width: 30%;
  height: 80%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 15px;
}
.section_tictactoe{
  width: 100%;
  height: 75%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.section_title{
  width: 100%;
  text-align: center;
  display: none;
  background-color: var(--accent);
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 5px;
}
.section_tictactoe-game{
  width: 30vw;
  height: 30vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* border: 1px solid var(--dark-primary); */
  border-radius: 5px;
  /* padding: 5px 10px; */
  margin-bottom: 20px;
}
.cell{
  margin: 2px;
  width: 33%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.row{
  width: 90%;
  height: 33%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.col2{
  border-left: 1px solid var(--dark-primary);
  border-right: 1px solid var(--dark-primary);
}
.row2{
  border-top: 1px solid var(--dark-primary);
  border-bottom: 1px solid var(--dark-primary);
}
.cell_img{
  width: 50%;
  height: 50%;
}

/* .section_tictactoe-chance{
  background-color: var(--accent);
}
.section_tictactoe-reset{
  background-color: var(--secondary);
} */




@media (max-width: 900px) {
  body{
    height: max-content !important;
  }
.section {
  width: 50%;
}
}

@media (max-width: 550px) {

.section {
  width: 70%;
}
.section_tictactoe-game{
  width: 80vw;
}
}
