body {
    font-family: 'Montserrat', sans-serif;
    background-color: ##f9f9f4;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
}

header {
    text-align: center;
    padding: 40px 20px 10px;
}

h1 {
    font-size: 48px;
    margin-bottom: 10px;
    color: #2c3e50;
    font-family: 'Zen Dots' , sans-serif;

}

#pp {
    border-radius: 50%;
    max-width: 300px;
    width: 100%;
    height: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    margin-top: 20px;
}

section {
    background: white;
    margin: 30px auto;
    padding: 30px;
    max-width: 900px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

h2 {
    color: #2980b9;
    border-bottom: 2px solid #3498db;
    padding-bottom: 8px;
    margin-bottom: 20px;
}

h3 {
    color: #34495e;
    margin-top: 10px;
}

ul {
    padding-left: 20px;
}

li {
    margin-bottom: 6px;
}

.container {
    text-align: center;
    margin-top: 20px;
}

#lien_linkedin, #lien_pdf {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    background-color: #0A66C2;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

#lien_linkedin:hover,
#lien_pdf:hover {
    background-color: #084a9e;
    transform: translateY(-2px);
}

#linkedin {
    display: block;
    margin: 10px auto;
}

#poste {
    text-align: center;
    font-size: 1.5em;
    color: #16a085;
    margin: 0;
}

footer {
    text-align: center;
    background-color: #2c3e50;
    color: white;
    padding: 20px 10px;
    margin-top: 40px;
}

footer a {
    color: #ffffff;
    text-decoration: underline;
}

@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    section {
        padding: 20px;
    }

    h1 {
        font-size: 36px;
    }

    #pp {
        max-width: 200px;
    }
}


.btn-ip {
  padding: 10px 20px;
  background-color: #4a90e2;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
}

.btn-ip:hover {
  background-color: #357ABD;
}

