/* This is a comment */
/* This is my first foray into css */

body{
    background-color: lightskyblue;
    color: darkred;
}
h1{
    color: darkgreen;
    font-family: serif;
    font-size: 50px;
    text-align: center;
}
p{
    
    background-color: black;
    color: antiquewhite;
}
img{
    border: 15px groove red;
}
h3{
    font-family: "courier new";
    color: deeppink;
    font-size: 20px;
}
ul{
    border: medium solid pink;
    color: darkmagenta;
}
li{
    list-style-type: lower-greek;
    color:  crimson; 
}
a{
    color: chartreuse;
    text-decoration: none;
    font-weight: bold;
}
a:hover{
    color: crimson; 
    text-decoration: overline; 
}