/* Importación de la fuente */
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'EB Garamond', serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: url('../img/background.jpg'); /* Imagen de fondo */
    background-size: cover;
    background-position: center;
}

.vcard-container {
    text-align: center;
    /* background-color: rgba(255, 255, 255, 0.9); */
    padding: 20px;
    border-radius: 10px;
    width: 300px;
}

.header {
    margin-bottom: 20px;
}

.logo, .logo2 {
    width: 100px; /* Ajusta según sea necesario */
    height: auto;
    margin-bottom: 10px;
}

h1 {
    font-size: 24px;
    color: white; /* Color de texto similar al de la imagen */
    margin-bottom: 5px;
}

h2 {
    font-size: 18px;
    color: white;
    margin-bottom: 20px;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.button {
    background-color: #f5f5dc;
    color: #1e285d;
    padding: 10px 0;
    text-decoration: none;
    border-radius: 0 30px 0 0;
    font-size: 20px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #ddd;
}

footer {
    margin-top: 20px;
}

footer p a{
    color: white;
    font-size: 18px;
    font-weight: bold;
}

/* Diseño de botones redondos para compartir */
.share-buttons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 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);
}