.moi_meme {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 32px;
    padding: 100px 64px 0 64px;
    margin-bottom: min(calc(100vh - 92px - 100px), 205px);
    position: relative;
}

.fond_bleu {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 30%;
    background-color: #8689AC; /* Ajustez la couleur selon vos besoins */
    opacity: 0.4;
}

.photo_profil {
    grid-column: 3 / span 3; /* Prend 4 colonnes en commençant par la 2ème */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-self: end;
}

.photo_profil img {
    width: 100%;
    height: auto;
}

.texte_presentation {
    grid-column: 8 / span 4; /* Prend 5 colonnes en commençant par la 7ème */
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.titre_presentation {
    font-family: 'Mukta';
    font-size: 24px;
    font-weight: 700;
    color: #101116;
}

.contenu_presentation {
    font-family: 'Mukta';
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    color: #101116;
    line-height: 1.75;
}

.btn_cv {
    background-color: #1011161e;
    font-family: 'Mukta';
    font-size: 18px;
    font-weight: 600;
    color: #8689AC;
    padding: 5px 10px;
    text-decoration: none;
    display: table; 
    border-radius: 5px;
    transition: all 0.3s ease;
    margin-top: 25px;
}

.btn_cv:hover {
    background-color: #8689ac7e;
    color: #101116;
}