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

body{
  background-color: aqua;
    color: blueviolet;
}

h1{
    color: darkblue;
    font-family: serif;
    font-size: 45px;
    text-align: center;
}

p{
    font-family: cursive;
    color: chartreuse;
    background-color: darkslategray
}

img{
    border: 10px groove silver;
}

h3{
    font-family: "Sawasdee";
    font-size: 20px;
}

ul{
    border: thin solid pink;
    color: black
}

li{
    list-style-type:circle;
    color: crimson;
}

a{
    color:darkmagenta;
    text-decoration: none;
    font-weight: bold;
}

a:hover{
    color: darkolivegreen;
    text-decoration: overline;
}