div {
    color: green;
}

.block {
    color: red;
}

#id-block {
    color: rgb(132, 0, 255);
}

[data-example] {
    color: brown;
}

[data-example="value2"] {
    color: rgb(128, 49, 98);
}

.block3, .block4, .block5 {
    color: rgb(255, 242, 0);
}

div.blue-block {
    color: blue;
}

div .orange {
    color: orange;
}

.parent>.child {
    color: rgb(0, 221, 255);
}
.some_text{
    font-family: "Open Sans", sans-serif;
    font-size: 40px;
    line-height: 60px;
    text-align: justify;
    font-weight: 700;
    font-style: italic;
}
.text1{
    font-weight: 300;
    font-size: 20px;
    line-height: 30px;
}
.text2{
    font-weight: 600;
    color: black;
    text-align: left;
     text-decoration: line-through;
}
.text3{
    font-weight: 600;
    color: black;
    text-align: center;
    font-size: 40px;
    
}
.text4{
    text-decoration-line: overline; 
    text-decoration-style: wavy; 
    color: blueviolet;
    word-spacing: 30px;
    line-height: 30px;
}
.text5{
    text-decoration-line: underline;
    text-decoration-style: double;
    letter-spacing: 5px;
}