.wrap {
  position: relative;
  /* overflow: hidden; */
}

.main-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  overflow-y: hidden;
  height: 100%;
}

.cell {
  transition-duration: 5s;
  height: 10px;
  width: 10px;
  /* border: 0.1px solid black; */
  background-color: rgb(247, 246, 181);

  float: left;
}

.activCell {
  transition-duration: 0s;
  background-color: rgb(146, 255, 146);
  opacity: 1;
}