/* Grundlegendes Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #89fffd, #ef32d9);
    font-family: 'Arial', sans-serif;
    overflow: hidden;
}

/* Profilbild */
.profilbild {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
    border: 4px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Zentrale Box */
.center-box {
    background: rgba(255, 255, 255, 0.85);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    text-align: left;
    max-width: 700px;
    width: 100%;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.center-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.profile-container {
    display: flex;
    align-items: center;
    width: 100%;
}

.text-content {
    flex: 1;
}

.center-box h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.center-box p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

.center-box a {
    color: #ff0080;
    text-decoration: none;
    font-weight: bold;
}

.center-box .btn {
    background-color: #ff0080;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 128, 0.5);
}

.center-box .btn:hover {
    background-color: #ff4d94;
    box-shadow: 0 4px 20px rgba(255, 0, 128, 0.8);
    transform: translateY(-5px);
}

/* Unsichtbarer Link */
.hidden-link {
    display: none;
}
