body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #131313; /* Couleur de fond en hexadécimal */
}

header {
    display: flex;
    align-items: center;
    background-color: #282b30;
    color: #fff;
    padding: 50px;
    justify-content: center;
    
}

header h1 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    max-width: 500px; /* Limite la largeur du h1 */
    width: 400px; /* Assure que la largeur est flexible mais limitée par max-width */
}

h1 {
    font-family: 'ABeeZee', Arial, sans-serif;
    font-weight: 700; 
}

h2, h3, p, li {
    color: white;
}

.home-link {
    color: white; /* Couleur du texte */
    text-decoration: none; /* Supprime le soulignement */
}

.home-link:hover {
    text-decoration: none; /* Optionnel : affiche un soulignement au survol */
}

.title-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    max-width: 700px; /* Augmente cette valeur pour élargir le conteneur */
    width: 80%; /* Largeur flexible limitée par max-width */
    color: white; /* Assure que le texte reste visible */
    font-family: 'ABeeZee', Arial, sans-serif;
    font-weight: 700;
}

section {
    text-align: center; /* Centre le contenu à l'intérieur du section */
}

.cv-image {
    width: 100%; /* Assurez-vous que l'image s'adapte bien au conteneur */
    transition: transform 0.3s ease; /* Durée et douceur de l'animation */
    max-width: 800px; /* Limite la largeur du CV si nécessaire */
    margin: 60px auto 0;
    display: block;
}

.cv-image:hover {
    transform: scale(1.05); /* Ajustez le facteur de zoom selon vos préférences */
}

.download-button {
    display: inline-block;
    margin: 60px auto;
    padding: 10px 20px;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    font-family: Arial, sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.download-button:hover {
    background-color: #0056b3;
}

footer {
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
    font-size: 0.9rem;
}
