/*Project 2 Style sheet - Ashley Agacinski - ITWP 1050*/ 
/*global variable*/
:root {
    --black: #000000;
}
/*new font*/
@font-face {
    font-family: TitleFont;
    src: url(webfonts/AmaticSC-Bold.ttf);
    font-style: normal;
}
/*body style*/
body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: rgba(102,204,255,.4);
}
/*paragraph style*/
p {
    text-indent: 1em;
    line-height: 1.5em;
    font-size: 1.5vw;
}
/*h1 style*/
h1 {
    font-family: TitleFont, Arial, Helvetica, sans-serif;
    font-size: 7vw;
    text-shadow: 1px 1px 4px #336699; 
}
/*h2 style*/
h2{
    background: url(./images/coloradomountains_bkgd.jpg) repeat center;
    color: white;
    text-shadow: 1px 1px 5px var(--black);
    padding: 25px;
    border: 2px inset var(--black);
    font-variant: small-caps;
    box-shadow: 5px 10px 2px #336699 inset;
    font-size: 3vw;
}
/*h3 style*/
h3 {
    font-variant: normal;
    padding: 5px;
    font-size: 2vw;
    border-bottom: 2px solid var(--black);
}
/*h4 style*/
h4 {
    font-variant: normal;
    padding: 5px;
    font-size: 1.75vw;
}
/*h5 style*/
h5 {
    font-style: italic;
    color: darkslategray;
    font-size: 1vw;
}
/*img style*/
img {
    float: right;
    margin: 0px 15px 15px 15px;
    border: 1px solid var(--black);
}
/*state flag class*/
.stateflag {
    float: left;
    margin: 5px 15px 10px 0px;
    box-shadow: 0px 3px 3px 1px var(--black);
}
/*highlight class*/
.highlightSection {
    padding: 10px;
    background-color: white;
    box-shadow: 1px 1px 2px 1px steelblue;
}
/*copyright class*/
.copyright {
    font-size: 9px;
    font-style: italic;
    text-align: center;
    padding: 10px;
    border-top: 1px medium var(--black);
}
/*ul li style*/
ul li {
    line-height: 1.5em;
    font-size: 1.5vw;
}
/*validation ID*/
#validation {
    text-align: center;
    font-size: 11px;
}
/*Link styles*/
a {
    text-decoration: underline;
    color: var(--black);
}
/*Link styles*/
a:link {
    text-decoration: underline;
    color: var(--black); 
    font-weight: bold; 
}
/*Link styles - visited*/
a:visited {
    text-decoration: underline;
    color: darkblue;
}
/*Link styles - hover*/
a:hover {
    text-decoration: none;
    color: darkred;
    font-weight: bold;
}
/*Link styles - active*/
a:active {
    text-decoration: underline wavy darkred;
    font-weight: bold;
}