/* Standard-Dunkelmodus */
body {
    background-color: #1c1c1c;
    color: white;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    transition: background 0.3s, color 0.3s;
}

/* Container */
.container {
    text-align: center;
    width: 90%;
    max-width: 400px;
    padding: 20px;
    border-radius: 10px;
}

/* Profilbild */
.profile-pic {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 4px solid white;
}

/* Überschrift */
h1 {
    margin: 15px 0 10px;
    font-size: 28px;
}

/* Pronomen & Beschreibung */
.pronouns, .bio {
    font-size: 18px;
    color: #b0b0b0;
    margin: 8px 0;
}

/* Buttons */
.buttons {
    margin-top: 20px;
}

.btn {
    display: block;
    width: 100%;
    max-width: 300px;
    padding: 14px;
    margin: 12px auto;
    font-size: 20px;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    text-align: center;
    transition: 0.3s;
}

.btn:hover {
    background-color: white;
    color: black;
}

.btn-light {
    background-color: white;
    color: black;
}

/* Hell-Modus */
.light-mode {
    background-color: white;
    color: black;
}

.light-mode .profile-pic {
    border: 4px solid black;
}

.light-mode .btn {
    border: 2px solid black;
    color: black;
}

.light-mode .btn:hover {
    background-color: black;
    color: white;
}

.light-mode .btn-light {
    background-color: black;
    color: white;
}

/* Theme-Umschalt-Button */
#theme-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
    border: none;
    background: none;
    font-size: 26px;
    cursor: pointer;
    transition: 0.3s;
}

/* Responsives Design */
@media (min-width: 600px) {
    .container {
        max-width: 500px;
    }
    .profile-pic {
        width: 200px;
        height: 200px;
    }
    h1 {
        font-size: 32px;
    }
    .pronouns, .bio {
        font-size: 20px;
    }
    .btn {
        font-size: 22px;
        padding: 16px;
    }
}
#update-button {

    position: fixed;

    top: 20px;

    left: 20px;

    background: #2A2A2A;

    color: white;

    font-size: 16px;

    font-weight: bold;

    padding: 10px 18px;

    border-radius: 20px;

    text-decoration: none;

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);

    transition: all 0.3s ease-in-out;

    font-family: Arial, sans-serif;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    animation: pulse 1.5s infinite alternate ease-in-out;

}

/* Hover-Effekt */

#update-button:hover {

    background: #444;

    transform: scale(1.1);

}

/* Puls-Animation */

@keyframes pulse {

    0% { transform: scale(1); }

    100% { transform: scale(1.08); }

}