/* css pou tout paj */
    @font-face{
        font-family: 'Beyond';
        src: url('../fonts/beyond_the_mountains.otf')  format('truetype'),
             url('../fonts/beyond_the_mountains.ttf')  format('opentype');
    }

    *{
        padding: 0;
        margin: 0;
        box-sizing: border-box;
        text-decoration: none;
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        transition: all .2s linear;
        font-size: 20px;
    }

    body{
        overflow-x: hidden;
    }

    :root{
        --yellow: #ff914d;
        --blue: #1700d5;
        --purple: #350a4e;
        --light-white: #ffffff50;
        --white: #ffffff;
        --black: #000000;
        --light-black: #00000050;
        --gray: rgb(102, 101, 101);
        --light-gray: #00000025;
        --border: 1px solid var(--light-black);
        --box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
        --degrade: linear-gradient(to right, var(--blue), var(--yellow));
        --degrade2: linear-gradient(to right, var(--yellow), var(--blue));
    }

    ::-webkit-scrollbar{
        width: .5rem;
        height: .5rem;
    }

    ::-webkit-scrollbar-track{
        background-color: transparent;
    }

    ::-webkit-scrollbar-thumb{
        background-color: var(--blue);
    }
/* css pou tout paj */

/* boutton */
    .flexBtn{
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .flexBtn .btn{
        padding: 8px 16px;
        font-size: 18px;
        color: var(--white);
        border-radius: 16px;
        text-wrap: nowrap;
        display: flex;
        align-items: center;
        border: none;
    }

    .flexBtn .btn:hover{
        cursor: pointer;
        scale: 1.05;
    }

    .flexBtn .btn1{
        background: var(--degrade);
    }

    .flexBtn .btn2{
        background: var(--degrade2);
    }
/* boutton */

/* titre */
    h2.titre{
        position: relative;
        left: 50%;
        transform: translateX(-50%);        
        max-width: max-content;
        font-size: 32px;
        font-weight: bolder;
        color: var(--blue);
        text-align: center;
        padding: 8px 0;
    }

    h2.titre::before{
        content: '';
        position: absolute;
        width: 50%;
        height: 3px;
        background-color: var(--yellow);
        bottom: 0; left: 0
    }
/* titre */

/* titre backend */
    h2.titreBackend{
        text-align: center;
        font-size: 32px;
        color: var(--light-black);
        margin-bottom: 16px;
    }
/* titre backend */

/* section */
    section{
        width: 100%;
        padding: 8px 32px;
        margin: 20px auto;
    }
/* section */

/* empty */
    .empty{
        width: 70%;
        margin: 0 auto;
        margin-bottom: 1rem;
        border:var(--border);
        border-radius: .3rem;
        padding: .5rem;
        text-align: center;
        font-size: 19px;
        background: var(--light-gay);
        color: var(--black);
        box-shadow: var(--box-shadow);
    }
/* empty */


/* responsive */
    /* font */
        @media screen and (max-width: 650px) {
            *{
                font-size: 18px;
            }
        }

        @media screen and (max-width: 450px) {
            *{
                font-size: 17px;
            }
        }
    /* font */

    /* bouton */
        @media screen and (max-width: 650px) {
            .flexBtn .btn{
                padding: 7px 15px;
                font-size: 17px;
                border-radius: 7px;
            }
        }

        @media screen and (max-width: 450px) {
            .flexBtn .btn{
                padding: 6px 14px;
                font-size: 16px;
                border-radius: 6px;
            }
        }
    /* bouton */

    /* titre */
        @media screen and (max-width: 650px) {
            h2.titre{
                font-size: 28px;
            }
        }

        @media screen and (max-width: 450px) {
            h2.titre{
                font-size: 24px;
            }
        }
    /* titre */

    /* section */
        @media screen and (max-width: 650px) {
            section{
                padding: 8px 16px;
            }
        }

        @media screen and (max-width: 450px) {
            section{
                padding: 8px 10px;
            }
        }
    /* section */

    /* empty */
        @media screen and (max-width: 950px){
            .empty{
                font-size: 16px;
            }
        }

        @media screen and (max-width: 610px){
            .empty{
                font-size: 15px;
            }
        }

        @media screen and (max-width: 480px){
            .empty{
                font-size: 14px;
            }
        }

        @media screen and (max-width: 380px){
            .empty{
                font-size: 13px;
            }
        }
    /* empty */
/* responsive */
