/*
// colours
// soft gradient 3 colours
background: linear-gradient(90deg, rgba(84,188,175,1) 0%, rgba(18,161,148,1) 50%, rgba(34,133,123,1) 100%);

// gradient all colours light to dark
background: rgb(84,188,175);
background: linear-gradient(90deg, rgba(84,188,175,1) 0%, rgba(18,161,148,1) 25%, rgba(34,133,123,1) 50%, rgba(12,107,99,1) 75%, rgba(50,82,78,1) 100%);

// gradient all colours dark to light
background: linear-gradient(270deg, rgba(84,188,175,1) 0%, rgba(18,161,148,1) 25%, rgba(34,133,123,1) 50%, rgba(12,107,99,1) 75%, rgba(50,82,78,1) 100%);
*/

:root {
    --indepth1: #54bcaf;
    --indepth2: #12a194;
    --indepth3: #22857b;
    --indepth4: #0c6b63;
    --indepth5: #32524e;
}