/* @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap"); */
@import url('https://fonts.googleapis.com/css2?family=Bungee+Spice&display=swap');

:root {
  /* Root colors */
  --white-color: 255, 255, 255;
  --light-color: 248, 249, 254;
  --dark-color: 12, 20, 37;

  /* Tic tac toe */
  --win-color: 0, 128, 0;
  --lost-color: 255, 0, 0;

  --box-shadow: 0 12px 24px 2px rgb(129 146 179 / 8%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html,
body {
  height: 100%;
}

#body-content{
  display: flex;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

button,
a {
  cursor: pointer;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

#root,
#__next {
  isolation: isolate;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Basic Styling */
body {
  width: 100%;
  line-height: 1.5;

  text-rendering: optimizeSpeed;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-style: normal;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
    monospace;
}

/* Remove all animations, transitions and smooth scrolling */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Container Style */
.container {
  padding-inline: 2em;
  margin-inline: auto;
  max-width: 80rem;
}

@media (max-width: 400px) {
  .container {
    padding-inline: 0.5em;
  }
}

/* For readability we are using visually hidden */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.bold {
  font-weight: 700;
}

.heading{
  text-align: center;
  padding: 2px;
  border-radius: 10px;
  background-color: white;
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 5px;
}

/* table{
  background-color: white;
} */

table td{
  font-family: 'Bungee Spice', sans-serif;
}

#cell-0-0, #cell-0-2, #cell-1-1, #cell-2-0, #cell-2-2{
  border: 10px solid transparent;
  /* background-color: #e0dd1f; */
  /* background-color: rgb(46 13 162); */
  background-color: rgb(92 201 26);
  border-radius: 5px;
}
#cell-0-1, #cell-1-0, #cell-1-2, #cell-2-1{
  border: 10px solid transparent;
  /* background-color: rgb(16, 220, 16); */
  /* #fff6d7 */
  background-color: #fff6d7;
  border-radius: 5px;
}