* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(44, 43, 43);
  overflow: hidden;
}

main {
  overflow: hidden;
  animation: show 1.3s ease-in-out forwards;
  scale: 0;
  opacity: 0;
  background-color: rgb(238, 238, 238);
  border-radius: 50%;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 30px;
}
@keyframes show {
  0% {
    width: 400px;
    height: 400px;
    opacity: 0;
    scale: 0;
    border-radius: 50%;
  }
  50% {
    width: 800px;
    height: 800px;
    opacity: 1;
    scale: 1.1;
    border-radius: 50%;
  }
  80% {
    width: 1000px;
    height: 1000px;
    opacity: 1;
    scale: 0.5;
    border-radius: 50%;
    background-color: rgb(238, 238, 238);
  }
  100% {
    width: 100%;
    height: 100vh;
    opacity: 1;
    scale: 1;
    border-radius: 0px;
    background-color: rgb(255, 255, 255);
  }
}
main .scores {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  font-weight: 900;
  color: rgb(48, 48, 190);
}
main .board {
  display: grid;
  grid-template-columns: repeat(3, 100px);
  grid-template-rows: repeat(3, 100px);
  gap: 10px;
  border: 5px solid rgb(137, 137, 233);
  border-radius: 20px;
  box-shadow: 0 15px 20px rgba(0, 0, 0, 0.212);
  padding: 20px;
  transition: 0.8s;
  opacity: 0;
  animation: showw 1s ease-in-out forwards;
  animation-delay: 1s;
}
@keyframes showw {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
main .board:hover {
  border: 5px solid rgb(48, 48, 190);
  transform: translateY(-5px) scale(1.2);
  box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.438);
}
main .cell {
  width: 100px;
  height: 100px;
  border: 5px solid transparent;
  border-radius: 10px;
  transition: 0.4s;
  border: 5px solid transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 4em;
  cursor: pointer;
  color: rgb(48, 48, 190);
  opacity: 0;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.274);
  animation: show2 0.4s ease-in-out forwards;
}
@keyframes show2 {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
main .cell:first-child {
  animation-delay: 1s;
}
main .cell:nth-child(2) {
  animation-delay: 1.2s;
}
main .cell:nth-child(3) {
  animation-delay: 1.3s;
}
main .cell:nth-child(4) {
  animation-delay: 1.4s;
}
main .cell:nth-child(5) {
  animation-delay: 1.5s;
}
main .cell:nth-child(6) {
  animation-delay: 1.6s;
}
main .cell:nth-child(7) {
  animation-delay: 1.7s;
}
main .cell:nth-child(8) {
  animation-delay: 1.8s;
}
main .cell:nth-child(9) {
  animation-delay: 1.9s;
}
main .cell:hover {
  border: 5px solid rgb(70, 70, 180);
}
main .cell.active {
  border: 5px solid rgb(48, 48, 190);
  background-color: white;
}/*# sourceMappingURL=style.css.map */