body {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #708080; /* Ciemne tło */
  overflow: hidden;
}

.app-window {
  width: 1000px;
  height: 500px;
  background-color: #f9f9f9;
  box-sizing: border-box;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
}

.sky {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: black;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.square {
  width: 100px;
  height: 100px;
  border: 2px solid blue;
  position: absolute;
  background-color: transparent;
  transition: top 0.1s, left 0.1s;
}

.buttons {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 2px;
  
}

.generate-buttons {
  display: flex;
  justify-content: center;
  margin-right: 10px;
}

.generate-buttons input {
  width: 60px;
  padding: 5px;
  font-size: 16px;
  
}

.generate-buttons button, .count-buttons button {
  padding: 10px 10px;
  background-color: #003366;
  color: #FFD700;;
  border: none;
  cursor: pointer;
  font-size: 18px;
  border-radius: 5px;
  height: 40px;
  widht: 40px;
 
 height: 40px;
  line-height: 40px; /* Wyrównuje tekst w przycisku */
  padding-top: 2px; /* Przesuwa tekst w górę */
}

.generate-buttons button:hover, .count-buttons button:hover {
  background-color: #001a33;
height: 40px;
}

.arrow-buttons {
  display: flex;
  justify-content: space-evenly;
  width: 150px;
  margin-left: 10px;
}

.arrow-buttons button {
  width: 60px;
  height: 40px;
  margin: 0 1px;
  padding: 0;
  background-color: #003366;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}

.arrow-buttons button:hover {
  background-color: #001a33;
}

.info {
  margin-top: 20px;
  color: white;
  font-size: 18px;
  position: absolute;
  top: 50px;
  left: 20px;
  text-align: left;
}

.star {
  position: absolute;
  border-radius: 50%;
  background-color: white;
  opacity: 0.8;
}

.meteor {
  position: absolute;
  background-color: white;
  width: 2px;
  height: 6px;
  border-radius: 50%;
  opacity: 0.9;
  animation: meteor-fall linear infinite;
}

@keyframes meteor-fall {
  0% {
    top: -10px;
    left: 0;
    opacity: 1;
  }
  100% {
    top: 100%;
    left: 100%;
    opacity: 0;
  }
}

h3 {
  position: absolute;
  top: -50px; /* Stała odległość od górnej krawędzi .sky */
  left: 50%; /* Wyrównanie do środka */
  transform: translateX(-50%); /* Dokładne wyśrodkowanie */
  color: white;
  font-size: 20px; /* Możesz dostosować rozmiar czcionki */
  font-weight: bold;
}
.copyright {
  position: absolute;
  bottom: -20px; /* Stała odległość od dolnej krawędzi .sky */
  left: 50%; /* Wyrównanie do środka */
  transform: translateX(-50%); /* Dokładne wyśrodkowanie */
  color: white;
  font-size: 14px;
 
}
#copyright a {
  text-decoration: none;  /* Usunięcie podkreślenia */
}