body {
  background-color: rgb(227, 214, 214);

}

.container {
  margin-top: 30px;
  margin-left: 30px;
}

.field {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(4, 120px);
  gap: 15px;
}

.cell {
  background-color: rgb(3, 79, 3);
  width: 120px;
  height: 120px;
  border-radius: 60px;
  /* Для позиционирования картинки */
  display: flex;
  align-items: center;
  justify-content: center;
  /* для будущего клика */
  cursor: url(./c3a618c92644aec53831.png), auto;
}

.goblin {
  width: 100px;
  height: 100px;
  /* чтобы клик проходил на ячейку */
  pointer-events: none; 
  background-image: url("https://raw.githubusercontent.com/netology-code/ahj-homeworks/video/dom/pic/goblin.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  animation: bounce 0.3s ease;
  transition: all 0.3s ease;
}

@keyframes bounce {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  80% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
  
