* {
    margin: 0;
}
  
body{
    font-family: 'Barlow Semi Condensed', sans-serif;
    background-color: #1F2039;
}

header{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 20px 50px;
    margin-top: 20px;
    margin-bottom: 50px;
}

header a{
    background-color: #A4A6B1;
    color: #1F2039;
    text-decoration: none;
    padding: 10px 70px;
    font-weight: 600;
}

.boutonGauche{
    border-bottom-left-radius: 20px;
    border-top-left-radius: 20px;
}

.boutonDroite{
    border-bottom-right-radius: 20px;
    border-top-right-radius: 20px;
}

footer{
    background-color: white;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50px;
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
}

.logoLinkedin{
    height: 40px;
    width: 40px;
    margin-right: 20px;
}

a:hover {
    opacity: 0.5;
}

h1{
    color: #A4A6B1;
    font-size: 3.5em;
    margin-bottom: 20px;
}

.titreOnglet{
    margin-left: 100px;
}

.fiches {
    display: flex;
    gap: 40px;
    justify-content: center;
    z-index: 1;
}

.fiches article{
    background-color: #A4A6B1;
    padding: 60px 40px 30px 40px;
    border-bottom-left-radius: 15px;
    margin-top: 50px;
    width: 180px;
}

h2 {
    margin-bottom: 10px;
}

.fiches article:before{
    content: "";
    display: block;
    position: relative;
    top: -25px;
    left: 50%;
    background: #1F2039;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
}