* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  width: 100%;
  height: 100vh;
}

.x-o {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.x-o .user {
  width: 200px;
  height: 20px;
  color: darkorchid;
  font-size: 20px;
  text-align: center;
  text-transform: uppercase;
}
.x-o .game-container {
  width: 450px;
  height: 450px;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.x-o .game-container .game-block {
  border: 1px solid black;
  width: 150px;
  height: 150px;
  font-size: 120px;
  text-align: center;
  color: blue;
}
.x-o .game-container .finis {
  height: 3px;
  width: 435px;
  position: absolute;
  transform: rotate(90deg);
  top: 49%;
}
.x-o .game-container .finis .game-over {
  position: absolute;
  height: 3px;
  width: 435px;
  background: #ff0047;
  top: 49%;
  -webkit-animation: animateThis 0.6s ease-in;
          animation: animateThis 0.6s ease-in;
}
@-webkit-keyframes animateThis {
  0% {
    width: 0px;
  }
  100% {
    width: 435px;
  }
}
@keyframes animateThis {
  0% {
    width: 0px;
  }
  100% {
    width: 435px;
  }
}
.x-o .game-container .finis .game-over2 {
  position: absolute;
  height: 3px;
  width: 534px;
  background: #ff0047;
  top: 49%;
  -webkit-animation: animateThis 0.6s ease-in;
          animation: animateThis 0.6s ease-in;
}
@keyframes animateThis {
  0% {
    width: 0px;
  }
  100% {
    width: 534px;
  }
}
.x-o .sehv {
  width: 150px;
  height: 20px;
}
.x-o .new {
  padding: 10px;
  background: radial-gradient(rgba(11, 118, 246, 0.4), rgba(20, 107, 160, 0.9019607843));
  color: #1b0055;
  text-transform: uppercase;
  border-radius: 8px;
  cursor: pointer;
}
.x-o .basla {
  padding: 10px;
  background: radial-gradient(rgba(11, 118, 246, 0.4), rgba(20, 107, 160, 0.9019607843));
  color: #1b0055;
  text-transform: uppercase;
  border-radius: 8px;
  cursor: pointer;
}/*# sourceMappingURL=style.css.map */