section{
    padding: 10px 200px;
}

.cuve{
    background: rgba(22, 184, 79, 0.6);
    min-height: 10vh;
    display: grid;
}

.cuve-remplissage{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    
}

.cuve-info{
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5);
    height: 60px;
    width: 270px;
    background: rgb(24, 77, 110);
    /*color: #50B8B4;*/
    text-align: center;
}

.infos-cuve{
    font-size: 0.7em;
    font-weight: 700;
    color: #d1d2d3;
}

.cuve-reading0{
    display: grid;
    text-align:center;
    line-height : 60px;
    font-size: 1.4em;
    font-weight: 700;
}
.cuve-reading1{
    display: grid;
    text-align: center;
    line-height : 40px;
    font-size: 2em;
    font-weight: 700;
    /*color: #9e3e4f;*/
}
.timestamp{
    text-align: center;
    line-height : 20px;
    font-size: 0.8em;
    font-weight: 40;
    color: rgb(203, 206, 204);
}

.cuve-reading2{
    display: grid;
    text-align: center;
    line-height : 45px;
    font-size: 3em;
    font-weight: 700;
    color: rgb(119, 156, 179);
    
}

.np{
    display: flex;
    flex-direction: row;
    justify-content:space-around;
}

@media screen and (max-width: 1500px) {
    section{
        padding: 10px 10px;
    }
    .cuve-remplissage{
        flex-wrap: wrap;
        align-content: flex-start;
        justify-content: space-evenly;
        align-items: center;
        
    }
    .cuve-info{
        margin: 0px;
    }

}

@media screen and (max-width: 1000px) {
    .cuve{
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: space-evenly;
        align-items: center;
        padding: 5px;
    }
    .cuve-info{
        margin: 0px;
    }
    .mj{
        border-bottom: 1px solid rgb(95, 243, 248);
    }

}

