/* //////////////////////////////////// */
/* /////////////// TOUT /////////////// */
/* //////////////////////////////////// */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
}

* p {
    font-size: 16px;
}

body {
    margin: 30px;
}

a {
    text-decoration: none;
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
}

a:hover {
    color: var(--color_aleatoire);
}

/* //////////////////////////////////// */
/* ///////////// COULEURS //////////// */
/* //////////////////////////////////// */

:root {
    --color_aleatoire: transparent;
}

#fondDegrade {
    /* border: 1px solid; */
    z-index: -1;
    position: fixed;
    top: 0;
    left: 0;
    height: 300vh;
    width: 100vw;
    /* background: #00D68F; */
    /* background: linear-gradient(180deg, rgba(0, 214, 143, 1) 0%, rgba(255, 255, 255, 0) 100%); */
}

/* //////////////////////////////////// */
/* ////////////// FONTS /////////////// */
/* //////////////////////////////////// */


/* //////////////////////////////////// */
/* //////////// SCROLLBAR ///////////// */
/* //////////////////////////////////// */

*::-webkit-scrollbar {
    width: 0px;
    height: 0px;
    margin-right: 20%;
}

*::-webkit-scrollbar-track {
    overflow-y: hidden;
}

*::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, .0);
    /* background-color: red; */
    border-radius: 40px;
    padding-top: 150px;
    border-top: 10px hidden;
}

* {
    scroll-margin-top: 150px;
    scrollbar-color: rgba(0, 0, 0, .0);
}


@media (max-aspect-ratio: 100/99) {
    h2 {
        font-size: 8vw;
        line-height: 8vw;
        margin-top: 4vh;
        margin-bottom: -1vh;
    }

    h3 {
        line-height: 4.5vw;
        font-size: 3.7vw;
    }
}