/*
	Charls Sebastian
	ITWP 1050
	Project 1 - CSS File
*/


/*! This controls styling for table*/
table {
    border: medium solid #336699;
    color: #336699;
    background-color: #ff9900;
}
/*! This controls styling for image*/
img {
    border: black;
    border-style: double; 
}
/*! This controls styling for list*/
li {
    padding-top: 0px;
    padding-right: 15px;
    padding-bottom: 0px;
    padding-left: 0px;
}
/*Class that styles fun facts*/
.funfacts {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #336699;
    padding: 8px;
    color: white;
    text-align: center;
}
/*Class that styles validator*/
.logos {
    border: none;
}
/*ID that styles content*/
#content {
    background-color: #336699;
    padding: 5px;
    color: white;
    width: auto;
}
#wiki {
    color: #cccccc;
    font-style: italic;
}
/*Styles anchor tag*/
a{
    text-decoration: underline;
    color: black;
    font-size: 90%;
}
/*Pseudo-class that styles link*/
a:link  {
    color: black;
    text-decoration: none;
}
/*Pseudo-class that styles link*/
a:visited {
    color: #336699;
    text-decoration: none;
}
/*Pseudo-class that styles link*/
a:hover {
    color: #ff9900;
    text-decoration: none;
    font-weight: bold;
    font-size: 100%;
}
/*Pseudo-class that styles link*/
a:active {
    color: #ff9900;
    text-decoration: underline;
    font-weight: bold;
}
/*Styling Header 3*/
h3 {
    color: #ff9900;
    font-variant: small-caps;
}
