/* Grund-Setup */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #f4f7f6;
    color: #333;
    line-height: 1.6;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    background: #65b9f1;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    max-width: 500px;
    width: 90%;
    text-align: center;
}

/* Profilbild */
.profile-pic {
    width: 550px;
    height: 550px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #78a1bb; /* Sanftes Blau */
    margin-bottom: 20px;
    align-self: center;
}

/* Typografie */
h1 {
    margin: 10px 0;
    color: #2c3e50;
    font-size: 1.8rem;
}

.subtitle {
    font-style: italic;
    color: #ffffff;
    margin-bottom: 30px;
}

.info-box {
    background: #ebf2f6;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
}

.info-box h2 {
    font-size: 1.2rem;
    margin-top: 0;
    color: #65b9f1;
}

.contact-list {
    list-style: none;
    padding: 0;
    font-size: 20px;
}

.contact-list li {
    margin-bottom: 10px;
}

.contact-list a {
    color: #2aaaff;
    text-decoration: none;
    font-weight: bold;
    font-size: 25px;
    
}

.contact-list a:hover {
    text-decoration: underline;
}

footer {
    margin-top: 30px;
    font-size: 0.8rem;
    color: #ffffff;
}