body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: white;
}

header {
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    color: white;
    text-align: center;
    padding: 50px 20px;
}

.profil, .liens {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 50px 20px;
    flex-wrap: wrap;
}

.info, .photo, .card {
    background-color: #2c3e50;
    color: white;
    padding: 25px;
    width: 320px;
    border-radius: 15px;
    border: 2px solid #2563eb;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center; /* centre horizontalement */
    text-align: center;
}

.info:hover, .photo:hover, .card:hover {
    transform: translateY(-10px) scale(1.05) rotateZ(-1deg);
    box-shadow: 0 15px 35px rgba(37,99,235,0.35);
    border-color: #3b82f6;
}

img {
    width: 150px;
    border-radius: 12px;
    margin-top: 10px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

img:hover {
    transform: scale(1.1) rotateZ(3deg);
    box-shadow: 0 8px 20px rgba(37,99,235,0.3);
}

footer {
    background-color: #1e3a8a;
    color: white;
    text-align: center;
    padding: 20px;
}