@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap");

.board-row {
  display: flex;
  justify-content: center;
  user-select: none;
  margin: 0.2rem;
}

.block {
  width: 6.25rem;
  height: 6.25rem;
  background: rgba(0, 0, 0, 0.295);
  backdrop-filter: blur(8px);
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
  margin: 0.2rem;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.block-text {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Poppins", sans-serif;
  font-size: 3.7rem;
}

.block-text {
  animation: fadeIn 0.2s ease-in-out forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media (max-width: 340px) {
  .block {
    width: 3.5rem;
    height: 3.5rem;
  }

  .block-text {
    font-size: 1.8rem;
  }
}

@media (max-width: 514px) {
  .block {
    width: 5rem;
    height: 5rem;
  }

  .block-text {
    font-size: 3.5rem;
  }
}

@media (min-width: 1400px) {
  .block {
    width: 8rem;
    height: 8rem;
  }

  .block-text {
    font-size: 4.5rem;
  }
}

.game-content {
  margin: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
