body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: #f4f4f9;
}

header {
    background-color: #4CAF50;
    color: white;
    width: 100%;
    text-align: center;
    padding: 1rem 0;
}

header .profile-pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    right: 10px;
}

h1 {
    margin: 0;
    font-size: 2rem;
}

main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Passwort-Container */
#password-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#password-container input[type="password"],
#password-container button {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 5px;
    border: 1px solid #0073e6;
    margin: 0.5rem 0;
}

#password-container button {
    background-color: #0073e6;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

#password-container button:hover {
    background-color: #005bb5;
    transform: scale(1.05);
}
.button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

button {
    margin: 0.5rem 0;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    color: white;
    background-color: #4CAF50;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #45A049;
}

button {
    transition: transform 0.3s;
}

button:hover {
    transform: rotate(5deg);
}

@media (max-width: 600px) {
    h1 {
        font-size: 1.5rem;
    }
    button {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }
}