body {
    background-color: white;
    overflow: hidden;
    font-variation-settings: "wght" 280, "wdth" 100, "ital" 0;
    -webkit-text-size-adjust: none !important;
}


.glyphe{
    position: relative;
    margin-top: 15px;
    width: 100vw;
    color: #5FC5EA;
    font-family: "test2-VF";
    text-align: center;
    font-size: 700px;
}


.range{
    position: fixed;
    bottom: 100px;
    width: 100%;
    display: flex;
    justify-content: center;
}


input{
    width: 400px;
    height: 5px;
    -webkit-appearance: none;
    background: #575756;
     outline: none;
}

.input::-webkit-slider-thumb {
  -webkit-appearance: none;
    appearance: none;
    width: 28px;
    height: 28px; 
    background: #575756;
    cursor: pointer;
    border-radius: 50%;
}

.ensemble_valeur {
    position: fixed;
    bottom: 45px;
    right: 150px;
    left : 150px;
    width: 62%;
    display: flex;
    justify-content: space-between;
    font-family: "GT Flexa";
    font-size: 33px;
    color: #575756;
    font-variation-settings: "wght" 250, "wdth" 100, "ital" 0;
}


/*----------media queries----------*/


@media (min-width: 1200px) { 
    
    .glyphe {
        font-size: 550px;
    }
    
    input{
        width: 350px;
    }
    
    .ensemble_valeur{
       width: 29%;
        left : 36%;
    }
    
}



@media (max-width: 450px) { 
    
    .glyphe {
        font-size: 400px;
        margin-top: 5px;
    }
    

    input{
        width: 300px;
    }
    
    .ensemble_valeur{
        font-size: 25px;
        width: 85%;
        left : 8%;
        bottom: 55px;
    }
    
}