/* this is a comment in css */

p {color: chartreuse;
}

body {
    background-image: url(imsignificant.jpg);
    height: fill;
    width: fill;
}


h1 {color:rgb(66, 76, 109); /* rgb values are dope */
/*    background-color: aliceblue; /* google colors or just use the picker */ 
    font-family:"Lucida Console", Monaco, monospace; /*use websafe font families, just google it*/
    font-size: 60px;
   /* line-height: 2em; */
    font-weight: bold;
    text-decoration: underline;
    text-align: center;
/*    border: 7px dotted red; /* spaces are important and dotted/dashed/solid */
    }  


header {
    background-image: url(Calendar.jpg);
    width: fill; /* can put px values too */
    opacity: .6;
    background-repeat: no-repeat;
    /*background-position: center;*/
}

a {font-size: 40px;
    text-decoration: none;
    color: orange;
}

a:hover {
        background-color: yellow;       /* separate rule for actions: such as hovering */
}
a:visited{
    color:bisque;
}

nav {
    color:floralwhite;
}

#specialP {
    color: aquamarine;
}

.specialC {
    color:darksalmon;
}