body {
    margin: 0;
    font-family: 'Ubuntu', sans-serif;
}

.Bandeau_Containeur {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;

}

.Logo_Containeur {
    display: flex;
    flex: 1;
}

.Logo_Apple {
    width: 110px;
    height: 130px;
    opacity: 0.8;
    padding-left: 100px;
    padding-top: 25px;
    padding-bottom: 30px;
}

.Bandeau_Liens_Containeur {
    display: flex;
    flex: 1;
    justify-content: center;
}

.Bandeau_Liens {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: center;
    height: 100%;

}

.Pseudo_Liens {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: color 0.3s;
    font-size: 1.5em;
    font-weight: lighter;
}

.Pseudo_Liens::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.Pseudo_Liens:hover::after {
    transform: scaleX(1);
}

.Contact_Containeur {
    width: 100%;
    height: 80vh;
    background-image: url(assets/aj/fondecran.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-color: rgba(255, 255, 255, 0.75);
    background-blend-mode: lighten;
    display: flex;
    flex-direction: row;
}

.Contact_Informations {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: center;
    margin-left: 150px;
}

.Bonjour {
    width: fit-content;
    font-size: 1.4em;
    font-weight: 400;
    color: white;
    margin-bottom: 10px;
    border: 1px solid #80DDCA;
    background-color: #80DDCA;
    padding: 5px 30px;
    border-radius: 360px 366px 360px 0px;
}

.Nom {
    font-size: 5em;
    font-weight: normal;
    margin: 0;
}

.SousTitre {
    font-size: 3em;
    font-weight: normal;
    margin: 0 0 20px 0;
}

.Contact_Ligne_Info {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 10px;
    gap: 20px;
    font-weight: lighter;
}

.Contact_Image {
    width: 30px;
    height: 30px;
}

.Contact_Image_Petite {
    width: 20px;
    height: 20px;
    padding: 20px;
}

.Contact_Photo {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Contact_Photo_Profil {
    width: 50%;
    height: auto;
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0.15), 0 0 0 40px rgba(0, 0, 0, 0.1);
    border-radius: 360px;

}

.Apropos_Containeur {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
}

.Apropos_Image_Containeur {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Apropos_Image {
    width: 80%;
    height: auto;
}

.Apropos_Description_Containeur {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.Apropos_Description_Containeur h2 {
    font-size: 2.3em;
    font-weight: normal;
    margin-bottom: 20px;
}

.Apropos_Competences {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.Apropos_Competences p {
    border: 2px solid #80DDCA;
    border-radius: 5px;
    padding: 3px 10px;
    margin: 5px;
    line-height: 40px;
}

.Apropos_Bouton_CV {
    width: fit-content;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
    text-decoration: none;
    background-color: #0bceaf;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    border-radius: 360px 360px 360px 360px;
}

.Apropos_Bouton_CV_Image {
    width: 20px;
    height: 20px;
}