/*
   New Perspectives on HTML and CSS
   Tutorial 6
   Case Problem 4

   dHome Web Site Style Sheet

   Filename:         oform.css
   Supporting files: 

*/

/* Default styles */

body {
    background-color:grey
}

p {
    font-family: "Times New Roman", Times, serif;
}


body {
    color: yellow;
}



}
h2 {
    color: red;
}
h4 {
    color: red;
}

input:focus, select:focus, textarea:focus {
	background-color: black;
	color: white;
}

h3 {
    color: white;
    text-shadow: 2px 2px 4px #000000;
}

table, th, td {
    border: 1px solid black;
}

