.logo-container {
	text-align: center; /* Zentriert das Logo */
	color: white;
	margin-top: -2.1rem;
}

.landing-logo {
	height: 6rem; /* Größe des Logos */
	border-radius: 15px; /* Abgerundete Ecken */
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Leichter Schatten */
}

.legal-main {
    margin: 0;
    padding: 0;
}

.legal-container {
    width: 100%;
    max-width: 1200px;
    margin: 0.5rem auto 0.5rem auto;
    padding: 0 1rem;
    box-sizing: border-box;
}

.legal-container iframe {
    width: 100%;
    height: 75vh;
    min-height: 800px;
    border: none;
    border-radius: 12px;
    background: white;
    display: block;
}

@media (max-width: 768px) {

    .legal-container {
        margin: 0.25rem auto 0.25rem auto;
        padding: 0;
    }

    .legal-container iframe {
        height: 75vh;
        min-height: 600px;
        border-radius: 0;
    }
}

.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: linear-gradient(
        180deg,
        rgba(34,39,45,0.98) 0%,
        rgba(18,20,24,0.98) 100%
    );

    color: #f3fff3;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 14px;

    padding: 0.85rem 1.4rem;

    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.08),
        0 8px 24px rgba(0,0,0,0.45);

    transition: transform 0.12s ease;
    white-space: nowrap;
}

.custom-button:active {
    transform: scale(0.985);
}

.custom-button img {
    height: 28px;
    width: auto;
    display: block;
}


/* Footer Styling */

.custom-footer {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 8px 10px 10px 10px;
  margin-top: 0;
  font-family: Arial, sans-serif;
  border-top: 1px solid #222;
}

.custom-footer p {
  margin: 4px 0;
  font-size: 12px;
}

.back-to-top {
  color: #98fb98;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  margin-top: 0px;
}

.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);
}


