/* styles.css */

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
}


.carte-container {
    perspective: 10000px; /* Contrôle la profondeur de l'effet 3D */
}

.carte-visite {
	width: 1411px;
	height: 806.286px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
    text-align: center;
    box-sizing: border-box;
}

a {
    color: #AB8262;
}