* {
  margin: 0;
  padding: 0;
  box-sizing: box-sizing;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  top: 0px;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background-color: rgb(143, 143, 143);
}
body #life {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
body #life #iteration {
  position: absolute;
  top: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.788);
  border-radius: 1rem;
  padding: 0.2rem 0.5rem;
}
body #life #game #allcells {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
body #life #game #allcells div {
  background-color: rgba(192, 192, 192, 0.329);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.03s ease;
}
body #life #game #allcells div.dead {
  transform: scale(0.8);
}
body #life #game #allcells div.dead:hover {
  background-color: rgba(199, 211, 36, 0.719);
  z-index: 1;
}
body #life #game #allcells div.ghost {
  background-color: rgba(1, 67, 129, 0.849);
  transform: scale(0.8);
}
body #life #game #allcells div.ghost:after {
  content: "";
}
body #life #game #allcells div.alive {
  background-color: rgba(0, 0, 0, 0.719);
}
body #life #game #allcells div.alive:hover {
  background-color: rgba(61, 6, 6, 0.719);
  color: white;
  z-index: 1;
}
body #life #game #allcells div.alive:after {
  content: "";
}
body #life .tools,
body #life .coment {
  margin-top: 1rem;
  position: relative;
  width: 100%;
}
body #life .tools {
  background-color: rgba(255, 61, 2, 0.616);
}
body #life .coment {
  background-color: rgba(2, 40, 255, 0.616);
}
body #life .buttons {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: absolute;
  bottom: 0.5rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
body #life .buttons .bt {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 225%;
  font-size: 225%;
  line-height: 100%;
  cursor: pointer;
}
body #life .buttons .bt.hidden {
  display: none;
}/*# sourceMappingURL=main.css.map */