
* {
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Segoe UI', Tahoma, sans-serif;
}

body {
    background: #0d0d0d;
    color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Container */
.profile-container {
    background: linear-gradient(145deg, #1a1a1a, #111111);
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 0 30px rgba(0,0,0,0.6);
}

/* Profilbild */
.profile-pic {
    width: 15rem;
    height: 15rem;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #c40cee86;
    margin-bottom: 2.5rem;
    transition: transform 0.3s;
}

/* Name */
.profile-name {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #c40cee86;
}
