* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-image: url('../img/background.jpg'); /* Aquí va tu imagen de fondo */
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vcard-container {
    padding-top: 150px;
    border-radius: 10px;
    text-align: center;
    width: 300px;
}

.section {
    margin-bottom: 20px;
}

h2 {
    color: white;
    font-size: 24px;
    margin-bottom: 15px;
    font-family: 'Times New Roman', serif;
}

.button {
    display: block;
    background-color: white;
    color: black;
    text-decoration: none;
    padding: 10px;
    margin: 10px 0;
    border-radius: 30px;
    font-size: 18px;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: lightgray;
}

/* SHARE BUTTONS */
.share-buttons {
    margin-top: 20px;
    display: flex;
    justify-content: end;
    gap: 10px;
    padding: 15px;
}
.share-qr {
    margin-top: 20px;
    display: flex;
    justify-content: end;
    gap: 10px;
    padding: 15px;
}
.share-icon {
    background-color: #ffffff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.share-icon img {
    width: 24px;
    height: 24px;
}
.share-icon:hover {
    background-color: #f5f5dc;
    transform: scale(1.1);
}