* {
    -moz-box-sizing: border-box; 
    -webkit-box-sizing: border-box; 
    box-sizing: border-box;
}
body {
    margin: 0; 
    font-family: 'Lexend'; 
    font-weight: 350;
    color: rgb(58, 57, 63);
}
h1 {
    font-weight: 800; 
    text-transform: uppercase;
}
h2 {
    font-weight: 600; 
    text-transform: uppercase;
}
a {
    text-decoration: none;
    color: dimgrey;
    font-weight: 500;
}
.button {
    max-width: 8rem; 
    margin-top: 10px; 
    padding: 10px 10px; 
    text-align: center; 
    text-transform: uppercase; 
    background-color: #D68383;
    color: white; 
    font-weight: 400;
    border: none; 
    border-radius: 10px;
}
.container {
    display: flex; 
    justify-items: space-between; 
    flex-direction: row;
    height: 100%;
}
.gauche {
    flex-grow: 3; 
    display: flex; 
    align-items: center;
}
.carte {
    width: 100%; 
    padding: 5%; 
    display: flex; 
    flex-direction: column; 
    justify-content: center;
}
.carte img {
    width: 10rem; 
    height: 10rem; 
    border-radius: 50%;
}
.soustitre {
    margin-top: -5px; 
    color: dimgrey;
}
.milieu {
    flex-grow: initial; 
    width: 50%; 
    height: 100vh; 
    align-items: center; 
    overflow: auto;
    scrollbar-width: none;
}
.droite { 
    flex-grow: 3; 
    align-items: center;
}
.comp-wrapper {
    background-color: #fae8eb;
    padding: 2rem 5rem;
}
.competences {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    margin: 20px;
}
.comp {
    background-color: white;
    border-radius: 6px;
    transition: 0.3s;
    width: 300px;
    margin: 25px;
    padding-top: 20px;
    text-align: center;
}
.comp:hover {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    }
.expe-wrapper {
    background-color: #fae8eb;
    padding: 2rem 5rem;
}
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}
    /* The actual timeline (the vertical ruler) */
.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: white;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
    margin-top: 50px;
}
    /* Container around content */
.autour {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}
    /* The circles on the timeline */
.autour::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -17px;
    background-color: white;
    border: 4px solid #D68383;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}
    /* Place the container to the left */
.left {
    left: 0;
}

    /* Place the container to the right */
.right {
    left: 50%;
}

    /* Add arrows to the left container (pointing right) */
.left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    right: 30px;
    border: medium solid white;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent white;
}
    /* Add arrows to the right container (pointing left) */
.right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    left: 30px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
}
    /* Fix the circle for containers on the right side */
.right::after {
    left: -16px;
}
    /* The actual content */
.content {
    padding: 20px 30px;
    background-color: white;
    position: relative;
    border-radius: 6px;
}
.outils-wrapper {
    background-color: #fae8eb;
    padding: 2rem 5rem;
}
.outils {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}
.barre {
    width: 550px;
    background-color: #fceff1;
    margin-bottom: 10px;
    }
.skills {
    text-align: left;
    padding-left: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    color: white;
    }
.adobe {
    width: 85%; 
    background-color: #D68383;
    opacity: 75%;
} 
.figma {
    width: 25%; 
    background-color: #D68383;
    opacity: 75%;
}
.balsamiq {
    width: 50%; 
    background-color: #D68383;
    opacity: 75%;
} 
.miro {
    width: 67%; 
    background-color: #D68383;
    opacity: 75%;
} 
.jira {
    width: 84%; 
    background-color: #D68383;
    opacity: 75%;
} 
.confluence {
    width: 78%; 
    background-color: #D68383;
    opacity: 75%;
} 
.notion {
    width: 65%; 
    background-color: #D68383;
    opacity: 75%;
} 
.excel {
    width: 72%; 
    background-color: #D68383;
    opacity: 75%;
} 
.filter {

}
@media screen and (max-width: 800px) {
    .container {
        display: flex; 
        flex-direction: column;
    }
    .gauche {
        background-color: rgb(160, 160, 219); 
        display: flex; 
        flex-direction: column;
    }
    .carte {
        background-color: rgb(255, 255, 255); 
        width: 100%; 
        padding: 2rem; 
        display: flex; 
        flex-direction: column; 
        justify-content: center;
    }
    .carte img {
        width: 10rem; 
        height: 10rem; 
        border-radius: 50%;
    }
    .soustitre {
        margin-top: -5px; 
        color: dimgray;
    }
    .milieu {
        width: 100%; 
        height: fit-content;
        overflow: unset;
    }
    .droite {
        display: none;
    }
    .comp-wrapper {
        padding: 2rem;
    }   
    .outils-wrapper {
        padding: 2rem;
    } 
    .expe-wrapper {
        padding: 2rem;
    } 
    .timeline::after {
        left: 31px;
    }
    /* Full-width containers */
    .autour {
        width: 100%;
        padding-left: 70px;
        padding-right: 15px;
    }
    /* Make sure that all arrows are pointing leftwards */
    .autour::before {
        left: 60px;
        border: medium solid white;
        border-width: 10px 10px 10px 0;
        border-color: transparent white transparent transparent;
    }
    /* Make sure all circles are at the same spot */
    .left::after, .right::after {
        left: 15px;
    }
    /* Make all right containers behave like the left ones */
    .right {
        left: 0%;
    }
}