body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f0f0f0;
  font-family: Arial, sans-serif;
}

.initial-screen {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  opacity: 1;
  transition: opacity 1s ease-out;
}

.initial-screen.hidden {
  opacity: 0;
}

.pixel-tower {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #ccc;
  padding: 20px;
  border: 5px solid #999;
  border-radius: 10px;
  transform: scale(1);
  transition: transform 0.5s ease-out;
}

.pixel-tower.enlarged-1 {
  transform: scale(1.5);
}

.pixel-tower.enlarged-2 {
  transform: scale(2);
}

.pixel-tower.enlarged-3 {
  transform: scale(2.5);
}

button {
  background-color: #f5c6a5;
  color: white;
  border: none;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 8px;
}

.main-content {
  display: none;
  text-align: center;
  opacity: 0;
  transition: opacity 1s ease-out;
}

.main-content.visible {
  display: block;
  opacity: 1;
}

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