/* @import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: "Montserrat", sans-serif;
    background-color: #eaeaea;

}

::selection {
    color: #fff;
    background: #0aa045;
}

::-moz-selection {
    color: #fff;
    background: #0aa045;
}

menu

Pictos pour le menu ?

.navMenu {
    position: fixed;
    top: 0%;
    left: auto;
    right: 0;
    color: black;
}

.navMenu {
    border-radius: 15px;
    transition: 0.4s;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-top: 28px;
    margin-right: 60px;
    color: white;
}

.navMenu a {
    color: black;
    text-decoration: none;
    font-size: 1.2em;
    text-transform: uppercase;
    font-weight: 500;
    display: inline-block;
    position: relative;
}

.margin {
    margin-right: 20px;
}

.navMenu a::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #0aa045;
    border-radius: 50%;
    position: absolute;
    bottom: -5px;
    left: 50%;
    top: 0px;
    transform: translateX(-50%);
    transition: top 0.2s ease-in-out, opacity 0.2s ease-in-out;
    opacity: 0;
}

.navMenu a:hover::before {
    top: 120%;
    opacity: 1;
}

.navMenu a:hover {
    color: #0aa045;
}

menu */

.container-all {
    display: flex;
    width: 100%;
    height: 100vh;
}

.container01 {
    
    align-items: center;
    justify-content: center;
}

a {
    text-decoration: none;
}

.container01 h1,
.container01 h3 {
    align-self: center;
    grid-column: 2/4;
    grid-row: 1/1;
}

.container02 {
    align-items: center;
    background-color: #f0f0f0;
}

.container02 p {
    margin-left: 5%;
    margin-right: 5%;
}

section:not(:first-of-type) h1 {
    margin: 50px 50px;
    align-self: center;
    writing-mode: vertical-lr;
    text-orientation: use-glyph-orientation;
}

h1 {
    color: #0aa045;
    font-size: 4em;
    font-weight: 800;
}

h2 {
    color: #0aa045;
    font-size: 3em;
    font-weight: 800;
}

h3 {
    color: #000;
    font-size: 2em;
    font-weight: 600;
}

p {
    color: #666666;
    font-size: 1em;
}

.picture {
    display: flex;
    justify-content: center;
    align-items: center;
}

.picture img {
    width: 80%;
    z-index: 999;
    /* margin: 10em; */
}

.logo_lm {
    height: 100vh;
}


/* footer */

footer {
    display: flex;
    flex-wrap: wrap;
    margin-top: auto;
    background-color: #eeeff2;
    padding: 60px 10%;
}

ul {
    list-style: none;
}

.footer-col {
    width: 25%;
}

.footer-col h4 {
    position: relative;
    margin-bottom: 30px;
    font-weight: 400;
    font-size: 22px;
    color: #0aa045;
    text-transform: capitalize;
}

.footer-col h4::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    background-color: #0aa045;
    height: 2px;
    width: 40px;
}

ul li:not(:last-child) {
    margin-bottom: 8px;
}

ul li a {
    display: block;
    font-size: 19px;
    text-transform: capitalize;
    color: #bdb6b6;
    text-decoration: none;
    transition: 0.4s;
}

ul li a:hover {
    color: white;
    padding-left: 2px;
}

.links a {
    display: inline-block;
    height: 44px;
    width: 44px;
    color: white;
    background-color: #bbbbbb;
    margin: 0 8px 8px 0;
    text-align: center;
    line-height: 44px;
    border-radius: 50%;
    transition: 0.4s;
}

.links a:hover {
    color: #4d4f55;
    background-color: white;
}

@media (max-width: 740px) {
    .footer-col {
        width: 50%;
        margin-bottom: 30px;
        text-align: center;
    }

    .footer-col h4::before {
        all: unset;
    }
}

@media (max-width: 555px) {
    .footer-col {
        width: 100%;
    }
}

/* footer */



.skills {
    /* display: block; */
    width: 100%;
    height: 100vh;
    padding: 0 8%;
    /* align-self: center; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 30px;
}

.skill-item {
    text-align: center;
    padding: 25px 10px;
    border-radius: 10px;
    font-size: 14px;
    cursor: pointer;
    background: transparent;
    transition: transform 0.5s, background 0.5s;
    /* display: flex;
    flex-direction: column;
    align-items: center; */
}

.skill-item span {
    font-size: 60px;
    margin-bottom: 5px;
    color: #0aa045;
}

.skill-item:hover {
    background: #0aa045;
    transform: scale(1.05);
}

.skill-item:hover h3,
.skill-item:hover p {
    color: #fff;
}

.skill-item:hover span {
    color: #fff;
}

/* .scroller {
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
} */

/* .scroller section {
    scroll-snap-align: start;
} */

