.logo-container {
	text-align: center; /* Zentriert das Logo */
	margin-top: 2rem; /* Abstand von oben */
	color: white;
}

.logo {
	height: 15rem; /* Größe des Logos */
	border-radius: 15px; /* Abgerundete Ecken */
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Leichter Schatten */
}

.description-container {
	margin: 1.5rem auto; /* Zentriert den Block und fügt Abstand hinzu */
	font-size: 1.5rem; /* Lesbare Schriftgröße */
	color: white; /* Dezente Textfarbe */
	text-align: left; /* Aenderung von Blocksatz nach links zentriert */
	text-justify: inter-word; /* Optimierter Blocksatz */
	max-width: 700px; /* Begrenzte Breite des Textblocks */
}

.btn-primary {
	margin-top: 2rem; /* Abstand zum Text */
}

.custom-button {
	background-color: black; /* Schwarzer Hintergrund */
	color: #00ff00; /* Leuchtend grüne Schrift */
	border: 2px solid white; /* Weißer Rahmen */
	border-radius: 5px; /* Leicht abgerundete Ecken */
	padding: 0.5rem 1.5rem; /* Innenabstand für eine angenehme Größe */
	text-decoration: none; /* Entfernt die Unterstreichung */
	font-weight: bold; /* Fettere Schrift für bessere Lesbarkeit */
	text-transform: uppercase; /* Schrift in Großbuchstaben */
	transition: all 0.3s ease-in-out; /* Sanfte Übergänge bei Hover */
}

.custom-button:hover {
	background-color: #00ff00; /* Grüner Hintergrund beim Hover */
	color: black; /* Schwarzer Text beim Hover */
	border-color: #00ff00; /* Grüner Rahmen beim Hover */
	transform: scale(1.05); /* Leichte Vergrößerung beim Hover */
}


/* Footer Styling */

.custom-footer {
  background-color: #000; 
  color: #fff; 
  text-align: center;
  padding: 20px;
  margin-top: 30px;
  font-family: Arial, sans-serif;
  border-top: 2px solid #333; 
}

.custom-footer p {
  margin: 10px 0; 
  font-size: 14px; 
}

.back-to-top {
  color: #4caf50; 
  font-size: 18px; 
  font-weight: bold; 
  text-decoration: none; 
}

.back-to-top:hover {
  color: #ffd700; 
  text-decoration: underline;
} 


/* Screenshot Gallery Styling */
.screenshot-gallery {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1px;
}

.screenshot-gallery img {
  width: 150px;
  height: auto;
  border-radius: 10px;
  margin:0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}


