.background{
    background-color:aquamarine;
}
a{
    color:red;
}
#h{
    color:crimson;
}
.h1{
    color:chocolate;
}
#h2{
    color:orange;
}
h2{
    color:black;!important
}
h4{
    color:139,0,139;
}
p{
    font-weight:bold;
}
.p{
    color:#7FFF00;
    font-size:20px;
}
.a{
    font-size:25px;
}
mark{
    color:crimson;
}

img.shadow-filter:hover{
    filter:drop-shadow(8px 8px 10px blue);
    filter:blur(3px);
}

.div{
    background-color:magenta;
}

.div2{
    background-color:gold;
}

.div3{
    background-color:indianred;
}

.background2{
    background-color:black;
}

h2::first-line{
    color:orange;
    font-weight:bold;
}

.alias{
    cursor:alias;
}

.dal{
    width:150px;
    height:150px;
}

.dal{
    border-color:black;
    border-width:2px 2px 2px 2px;
    border-style:solid;
    filter:hue-rotate(30deg);
    animation:dal 2s forwards;
}

@keyframes dal{
    from {
        height:150px;
        width:150px;
    }
    
    to{
        height:200px;
        width:200px;
    }
}

.ea{
    filter:grayscale(60%);
}