h1{
color:#3399CC;
font-family:"Times New Roman", Times, serif;
}

q{
color:purple;
}

strong{
color:white;
}

body{
background-color:gray;
background-image:url('dark.jpg');
background-repeat:no-repeat;
background-attachment:fixed;
}

#p1	/* id selector */
{
text-align:center;
color:white;
}

p.p2
{
text-align:center;
}


ul.center	/* class selector (of type ul) */ /* otherwise use .center */
{
text-align:center;
}

ul{
color:white;
list-style-type:circle;
text-align:left;
}

img
{
opacity:0.5;
border: solid white 5px; 
margin: 0px 100px;
padding: 10px 20px;
}

:link {color:#3399CC;}      /* unvisited link */
a:visited {color:#787878;}  /* visited link */
a:hover {color:white;}      /* mouse over - must come after link and visited */
a:active {color:#0000FF;}   /* selected link - must come after hover */

button
{
color: white;
background-color:black;
outline-color:green;
}
