:root {
    --first-color: #005f73;
    --second-color: #94d2bd;
}

.gradient {
	color: var(--first-color);
    background-color: var(--first-color);
    /*background-image: linear-gradient(90deg, var(--first-color) 0%, var(--second-color) 100%);*/
    background-size: 100%;
    background-repeat: repeat;
    background-clip: text;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    /*-webkit-text-fill-color: transparent;*/
    /*-moz-text-fill-color: transparent;*/
    font-size: 6rem;
    font-weight: 200;
    text-align: justify;
}