@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  box-sizing: border-box;
  font-family: Baskerville Old Face;
  user-select: none;
  text-align: center;
  color: rgb(218, 76, 246);
}
body {
  background-image: url(/gettyimages-1171564349-640x640.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

main {3
  background-position: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#header {
  display: flex;
  width: 235px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
#header .player {
  background-image: url(/gettyimages-1171564349-640x640.jpg);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 12px;
  border: solid 4px #f563e2eb;
  opacity: 0.5;
  transition: 0.3s;
  q
}
#header .player:hover {
  border: solid 4px #f563e2eb;
}
#header .player-active {
  opacity: 1;
  border: solid 4px #f563e2eb;
}
#header #xPlayerDisplay {
  color: #491846;
}
#header #oPlayerDisplay {
  color: #f563e2eb;
}
#head{
    padding: 5%;
}
.cell.X {
    color: #f563e2eb;
  }
  
  .cell.O {
    color: #4da6ff;
  }
#game-board {
  display: grid;
  grid-template-columns: repeat(3, 70px);
  grid-template-rows: repeat(3, 70px);
  gap: 12px;
}
#game-board .cell {
  background-image: url(/gettyimages-1171564349-640x640.jpg);
  border-radius: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: bold;
  cursor: pointer;
  transition: 5s background;
  box-shadow: 0 20px 32px #4da6ff;
  backdrop-filter: blur(10px);
}
#game-board .cell:hover {
  background: #cf07c5ad;
}

#reset {
  margin-top: 30px;
  width: 235px;
  background: #17122a;
  padding-top: 8px;
  padding-bottom: 8px;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s background;
  
}
#reset:hover {
  background: #2a2343;
}
#status {
    margin-top: 30px;
    width: 235px;
    background: #17122a;
    padding-top: 8px;
    padding-bottom: 8px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s background;
    
  }
  #status:hover {
    background: #2a2343;
  }
