 
 body {
background-color:#FFFF95;
}

div, p {
text-align: left;
}

h1, h2, h3 {
text-align: center;
}




.circle {
margin: 3px;
float: right;
height: 100px;
background-color: blue;
-moz-border-radius: 50px;
-webkit-border-radius: 50px;
border-radius: 50px;
width: 100px;
display: inline-block;
}

.triangle-up {
float: right;
margin: 3px;
width: 0;
height: 0;
border-left: 50px solid transparent;
border-right: 50px solid transparent;
border-bottom: 100px solid green;
display: inline-block;
}

.square {
float: right;
margin: 3px;
width: 100px;
height: 100px;
background-color: red;
display: inline-block;
}





a { font-family: Arial, Verdana, sans-serif; font-size: 18px; color: #483D8B; text-decoration: none}

a:hover { font-family: Arial, Verdana, sans-serif; font-size: 18px; color: #A52A2A; background-color: #FAEBD7}


table {
/*background-color: rgba(255,255,0,.8); */
width: 70%;
margin: 1%;
}

caption{
background: rgba(255,255,0,.8);

font-weight: bold;
}
table, th, td {
 border: 5px solid blue;
 padding: 5px;
 text-align: left;
}


/*Alternate colors between even and odd rows*/

tr:nth-child(even) {
	background: rgba(229, 247, 255,.7);
		
}

tr:nth-child(odd) {
	background: rgba(255,255,0,.8);	
}



tfoot td {
font-style: italic;
text-align: center;
}



footer {
padding-top: 30px;
padding-bottom: 30px;
border-top: solid 10px orange;
border-bottom: solid 10px orange;

}