/*CSS Project 1 
Author: Rachel Lincoln
Class: ITWP 1050 V0851 2023WI
This is Week 2 Project working with embedding style sheets into html
and working with web fonts*/

/*Section 1.2 Creating External Style Sheet*/

/*setting table style*/
table{
    border-style: solid;
    border: medium;
    border-color: #ff9900;
    background-color: #ff9900;
    
}

/*setting img style*/
img{
    border-style: double;
    border-color: #000000;
}

/*setting li style*/
li{
    padding-top: 0px;
    padding-right: 15px;
    padding-bottom: 0px;
    padding-left: 0px;

}

/*section 1.3 Classes and Ids*/

/*making  class selectors*/
.funfacts{
    font-family: Arial, Helvetica, sans-serif;
    background-color: #369;
    padding: 8px 8px 8px;
    color: white;
    text-align: center;
}
.logos{
    border-style:none;
}

/*create ID selectors*/
#content{
    background-color: #336699;
    padding: 5px 5px 5px;
    color:white;
    width:auto;
}

#wiki{
    color:lightgray;
    font-style: italic;
}

/* section 1.4 Pseudo classes*/

/*hyperlinks styling*/
a{
    text-decoration: underline;
    color: black;
    font-size: 90%;

}
a:link{
    color:black;
    text-decoration: none;
}

a:visited{
    color:#336699;
    text-decoration: none;
}

a:hover{
    color:#ff9900;
    text-decoration: none;
    font-weight: bold;
    font-size: 100%;
}

a:active{
    color:#ff9900;
    text-decoration: underline;
    font-weight: bold;
}