@font-face {
  font-family: Workbench;
  src: url("fonts/Workbench-Regular-VariableFont_BLED\,SCAN.ttf");
}
body {
  height: 100vh;
  margin: 0;
  background-color: black;
  color: white;
  font-family: "Workbench", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "BLED" 0, "SCAN" 0;
}
.mainContainer {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
h1 {
  text-align: center;
  margin-bottom: 30px;
}

#ticTacToeContainer {
  padding-bottom: 20px;
}
svg {
  cursor: pointer;
}
#optionsContainer {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 20px;
}
label,
select,
button,
input[type="color"] {
  margin: 5px;
  padding: 5px 10px;
  background-color: #f8f9fa;
  color: #343a40;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-family: "Workbench", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  font-variation-settings: "BLED" 5, "SCAN" 5;
}
button:hover {
  background-color: #e9ecef;
}
option {
  font-size: 14px;
}
#scores {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

#gameInfo {
  margin-left: 20px;
  margin-right: 20px;
}

.animate {
  text-align: center;
  margin-top: 20px;
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Default styles */
#ticTacToeSVG {
  /* Default styles for mobile devices */
  -webkit-tap-highlight-color: transparent;
  touch-action: none;
  user-select: none;
  width: 240px; /* Adjust as needed */
  height: 240px; /* Adjust as needed */
}

/* Media query for desktop devices */
@media only screen and (min-width: 768px) {
  #ticTacToeSVG {
    /* Styles for desktop devices */
    width: 420px; /* Adjust as needed */
    height: 420px; /* Adjust as needed */
  }
}

#ticTacToeContainer {
  height: 320px;
  width: 320px;
  justify-content: center;
  align-items: center;
  display: flex;
}

/* Media query for desktop devices */
@media only screen and (min-width: 768px) {
  #ticTacToeContainer {
    /* Styles for desktop devices */
    width: 480px; /* Adjust as needed */
    height: 480px; /* Adjust as needed */
    justify-content: center;
    align-items: center;
    display: flex;
  }
}

#otherBoards {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

#blog,
#article {
  margin-left: 20px;
  margin-right: 20px;
}

li {
  margin-bottom: 20px;
}

#articlebody {
  background-color: #232323;
}
