

/* Another style of CSS coding which you can use is below. Many people prefer to use this; 
especially on commercial projects where someone else may have to read your code. 
It's up to you which way you write your CSS */


body {
	margin: 40px 50px 10px 70px;
}
/*
p {
	margin: 5px 50px 5px 50px;
}
*/
a:hover {
	color: red;
	font-style: italic;
}


button.buttonclass {background-color:green}

button.buttontxtwhite {color:white;background-color:#B22222}

div.box {
	width: 500 px;
        border-style: solid;	
        border: 1.5 px blue;
        padding: 10px;
       	background: AntiqueWhite;
        left: 50px;
}




#columnA {
	float:left;
	width: 50%;
}

#columnB {
	float:right;
	width: 50%;
}

#date {
	background:AntiqueWhite;
}

