/* Grundlayout */
body {
    font-family: 'Arial', sans-serif;
    background-color: #28282D;
    color: #EFEFEF;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

/* Share-Button oben rechts */
.share-button {
    position: absolute;
    top: 20px;
    right: 20px;
}
.share-button button {
    background-color: #188B91;
    color: #EFEFEF;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
}
.share-button button:hover {
    background-color: #137478;
}

/* Container für die Visitenkarte */
.vcard-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #28282D;
    padding: 30px 20px;
    margin-top: 10rem;
    border-radius: 2px;
    border: 1px solid #188B91;
    text-align: center;
    max-width: 400px;
    width: 100%;
}

.vcard-container img {
    margin-top: -7rem;
}

/* Logo oben */
.logo {
    width: 10rem;
    height: auto;
    margin-bottom: 5px;
    margin-top: 3rem;
}

/* Profilbild */
.profile-pic {
    width: 12rem;
    height: 12rem;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
    object-position: 0% 0%
}

/* Name und Position */
h1 {
    font-size: 24px;
    margin: 10px 0 5px;
}
p {
    font-size: 16px;
    margin: 0 0 20px;
}

/* Kontakt-Buttons */
.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.contact-buttons a {
    background-color: #188B91;
    color: #EFEFEF;
    padding: 12px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    transition: background-color 0.3s;
}
.contact-buttons a:hover {
    background-color: #137478;
}

/* QR-Code */
.qr-code {
    margin-top: 20px;
    width: 150px;
    height: auto;
}

/* Responsives Verhalten */
@media (max-width: 480px) {
    .vcard-container {
        margin-top: 7rem;
        padding: 20px 15px;
		width: 95%;
    }
	
	.vcard-container img {
    margin-top: -7rem;
}
    .profile-pic {
        width: 200px;
        height: 200px;
    }

    h1 {
        font-size: 20px;
    }
    p {
        font-size: 14px;
    }
}