/* Hintergrundverlauf über die gesamte Seite */
body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom, #4facfe, #00f2fe);
    min-height: 100vh; /* Hintergrund über die gesamte Höhe */
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hauptcontainer */
.container {
    max-width: 90%; /* Responsive Anpassung */
    width: 500px; /* Standardgröße */
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
}

/* Titel */
h1 {
    font-size: 26px;
    color: #333;
    margin-bottom: 10px;
}

/* Beschreibungstext */
p {
    font-size: 16px;
    color: #555;
}

/* Generierter Name */
.generated-name {
    font-size: 22px;
    font-weight: bold;
    color: #4facfe;
    margin: 20px 0;
    padding: 10px;
    background-color: #f1f9ff;
    border: 2px dashed #4facfe;
    border-radius: 10px;
}

/* Buttons (Standard) */
button {
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 10px;
    width: 80%; /* Responsive Breite */
    max-width: 300px; /* Maximale Breite */
}

/* "Name generieren"-Button */
.generate-btn {
    background-color: #4facfe;
    color: white;
}

.generate-btn:hover {
    background-color: #358dde;
}

/* "Teilen"-Buttons */
.share-btn {
    background-color: #ff6f61;
    color: white;
}

.share-btn:hover {
    background-color: #d9534f;
}

/* WhatsApp-Button */
.share-btn.whatsapp {
    background-color: #25D366; /* WhatsApp-Grün */
    color: white;
}

.share-btn.whatsapp:hover {
    background-color: #1BA64A;
} 