* {
  --fgcol1: #e5e5e5;
  --line: 2px solid #e5e5e5;
}

body {
  font-family: monospace;
  box-sizing: border-box;
  background-color: hsl(0, 25%, 16%);
  color: var(--fgcol1);
}

#tictactoe {
  display: grid;
  grid-template-columns: 33.33333% 33.333333% 33.333333%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.infocontainer {
  display: flex;
  justify-content: space-around;
  align-content: space-around;
}
.playerinfo {
  padding: 10px;
}

.gitem {
  cursor: pointer;
  background-repeat: no-repeat;
  background-size: cover;
}

.p1 {
  background: url(img/x.svg);
}
.p2 {
  background: url(img/o.svg);
}

.win {
  background-color: rgba(255, 255, 255, 0.3);
}

#i1 {
  border-bottom: var(--line);
}
#i2 {
  border-left: var(--line);
  border-right: var(--line);
  border-bottom: var(--line);
}
#i3 {
  border-bottom: var(--line);
}
#i5 {
  border-left: var(--line);
  border-right: var(--line);
}
#i7 {
  border-top: var(--line);
}
#i8 {
  border-left: var(--line);
  border-right: var(--line);
  border-top: var(--line);
}
#i9 {
  border-top: var(--line);
}
