.game {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px; }

.gameGrid {
  display: flex;
  flex-direction: row;
  gap: 8px;
  width: fit-content;
  background-color: darkblue;
  padding: 24px;
  border-radius: 8px; }
  .gameGrid .columnContainer {
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 8px; }
    .gameGrid .columnContainer button {
      position: absolute;
      width: 72px;
      height: 432px;
      transform: translate(-4px, -4px);
      z-index: 1;
      border-radius: 8px;
      border: none;
      background: none; }
      .gameGrid .columnContainer button:hover:not(:disabled) {
        background-color: #fff4; }
  .gameGrid .column {
    display: flex;
    flex-direction: column;
    gap: 8px; }
  .gameGrid .tile {
    border-radius: 50%;
    background-color: white;
    width: 64px;
    height: 64px; }
    .gameGrid .tile::before {
      display: block;
      width: 66px;
      height: 66px;
      transform: translate(-1px, -1px);
      border-radius: 50%; }
    .gameGrid .tile.red::before {
      content: "";
      background-color: red;
      animation: drop-in 300ms ease-in; }
    .gameGrid .tile.blue::before {
      content: "";
      background-color: blue;
      animation: drop-in 300ms ease-in; }

.playerIcon {
  display: inline-block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  transition: background-color 300ms ease-in; }
  .playerIcon.red {
    background-color: red; }
  .playerIcon.blue {
    background-color: blue; }

.restart {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0.5em;
  width: 100%;
  left: 0;
  z-index: 2;
  position: absolute;
  animation: float-in 300ms linear;
  /* animation-delay: 2s; */
  transform: translateY(20px) scale(1); }
  .restart button {
    padding: 0.5em;
    font-size: large; }

@keyframes float-in {
  from {
    transform: translateY(0px) scale(1.1);
    opacity: 0%; }
  to {
    transform: translateY(20px) scale(1);
    opacity: 100%; } }
@keyframes drop-in {
  from {
    transform: translateY(-450px); }
  to {
    transform: translateY(0px); } }

/*# sourceMappingURL=style.css.map */
