/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: white;
  color: black;
  font-family: Courier;

}  

#test1 
{ 
	border: thin solid black; 
	width:200px; 
	height:200px; 
	text-align: justify; 
	background-color: black; 
	word-wrap: break-word; /* words won't go from the boundry */ 
	margin: 300px 20px auto; 
	/* top, left, bottom*/ 
	padding: 10px 20px 30px; 
	float: center; 
} 
a:link, a:visited {
  background-color: #000000;
  color: white;
  padding: 6px 25px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

a:hover, a:active {
  background-color: red;
}
b:link, b:visited{
  
  color: white;
  padding: 6px 25px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}
