*{
    text-decoration:none;
    }
.color{
    color:red;
}
.backcolor{
    background-color: red;
    color: white;
}
.backimage{
    background-image: url(/firefox.jpg);
    color: white;
    width: 100%;
    height: 250px;
}
.orange{
    color: orange;
}
.margin{
    margin-left: 10%;
    background-color: aquamarine;
}
.padding{
    padding-left: 10%;
    background-color: aquamarine;
}
.border{
    border: 2px solid orange;
}
.width{
    width: 50%;
    background-color: aquamarine;
}
.height{
    height: 50px;
    background-color: aquamarine;
}
.space{
    width: 100%;
    height: 230px;
    background-color: red;
}
.auto{
    width: 40%;
    height: 200px;
    background-color: aquamarine;
    margin-left : auto;
    margin-right: auto;
}
.aline{
    width: 40%;
    background-color: aquamarine;
    height: 200px;
    margin-left : auto;
    margin-right: auto;
    text-align: center;
    align-content: center;
}
div.first span{
    color: orange;
}
div.second > span{
    color: orange;
}
/* div.force span + span{
    color: orange;
} */
div.force span ~ span{
    color: orange;
}
a.link:link{
    color: red;
}
a.visited:visited{
    color: orange;
}
span.hover:hover{
    color: orange;
}
span.active:active{
    color: orange;
}
p.font{
    font-family: "Dela Gothic One", sans-serif;
}
ul.square{
    list-style-type: square;
}
ul.none{
    list-style-type: none;
}
ul.circle{
    list-style-type: circle;
}
ul.decimal{
    list-style-type: decimal;
}
ul.image{
    list-style-image: url(/list-marker.png);
}