@import url("https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Tilt+Warp:XROT@-27&display=swap");
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Press Start 2P", sans-serif;
  background-color: #1D1A2A;
  padding: 1rem;
  text-align: center;
  color: white;
  line-height: 2;
  letter-spacing: 0.1rem;
}

main {
  margin-block: 4rem;
  max-width: 700px;
  margin: auto;
}

.main-info {
  font-size: 0.8rem;
}

a {
  text-decoration: none;
  color: yellow;
}
a:hover {
  color: cyan;
}

ul {
  padding-left: 0;
  list-style-type: none;
}

button {
  cursor: pointer;
}

footer {
  font-size: 0.7rem;
  margin-block: 6rem 2rem;
}

.main-heading {
  color: orange;
}

.btns {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  max-width: 600px;
  margin: 4rem auto;
}

button {
  font-family: "press start 2p";
  font-size: 0.8rem;
  background: transparent;
  border: 1px solid white;
  color: white;
  border-radius: 0.3rem;
  padding: 1rem;
  cursor: pointer;
  flex-grow: 1;
  line-height: 1.2;
}

button:hover {
  color: orange;
  border-color: orange;
}

.board {
  margin: 3rem auto;
  display: flex;
  flex-wrap: wrap;
  width: 300px;
}

.tile {
  width: 100px;
  aspect-ratio: 1;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3rem;
  border-bottom: 1px solid white;
  border-left: 1px solid white;
}

.no-border-left {
  border-left: none;
}

.no-border-bottom {
  border-bottom: none;
}

.game-over-display {
  display: none;
  background: white;
  border-radius: 0.5rem;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  width: 90%;
  max-width: 300px;
  color: orange;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.reset-button {
  color: magenta;
  border: 1px solid magenta;
}/*# sourceMappingURL=tic-tac-toe-styles.css.map */