h1
{
color:#FFC0CB;
text-align:center;
font-family:Verdana;
}
body
{
background-color:grey;
font-family:Verdana;
}
a
{
color:lightgreen;
font-family:Verdana;
}
p
{
color:rgb(255,250,205);
font-family:Verdana;
}
li
{
color:rgb(255,250,205);
font-family:Verdana;
}
h4
{
color:cornflowerblue;
font-family:Verdana;
}
#home
{
color:cornflowerblue;
text-align:center;
}
.table
{
color:plum;
font-size:25px
}
.favorite
{
background-color:linen;
color:plum;font-size:25px;
}
mark
{
background-color:orange;
}
img.blur-filter {
    filter: blur(4px);
}
.first{
    font-family:fantasy;
}
.second{
    font-family:cursive;
}
.third{
    font-family:Verdana;
}
a:hover{
    color:orange;
}
.visibility{
    opacity:0.5
}
img{
    float:right; 
    margin:10px 15px 10px 15px;
}
img.filtered-image{
    animation:brightness 2s forwards;
}
@keyframes brightness{
    from{
        filter:brightness(0%);
    }
    to{
        filter:brightness(100%);
    }
}