/* styles.css, Dashon Spate, ITWP 1050, Project 2 */
/* global variable */
:root {
    --blackColor: #000;
}
/* web font */
@font-face {
    font-family: 'Title Font';
    src: url(webfonts/AmaticSC-Regular.ttf);
    font-style: normal;
}
/* styling the body */
body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: rgba(102,204,255,.5)
}
/* styling the paragraphs */
p{
    text-indent: 1em;
    line-height: 1.5em;
    font-size: 1.5vw;
}

/* Styling heading elements */
h1{
    font-family: Title Font, Arial, Helvetica, sans-serif;
    font-size: 7vw;
    text-shadow: 1px 1px 4px #336699;
}

h2{
    background: url(images/coloradomountains_bkgd.jpg) center repeat;
    color: #fff;
    text-shadow: 1px 1px 5px var(--blackColor);
    padding: 25px;
    border: 2px inset var(--blackColor);
    font-variant: small-caps;
    box-shadow: 5px 10px 20px #336699 inset;
}

h3{
    font-variant: normal;
    padding: 5px;
    font-size: 2vw;
    border-bottom: 2px solid var(--blackColor);
}

h4{
    font-variant: normal;
    padding: 5px;
    font-size: 1.75vw;
}

h5{
    font-style: italic;
    color: darkslategray;
    font-size: 1vw;
}

/* image styling */
img{
    float: right;
    margin: 0 15px 15px;
}

/* Class and ID styling */
.stateflag{
    float: left;
    border: 1px inset white;
    margin: 5px 15px 10px 0px;
    box-shadow: 0px 3px 3px 1px var(--blackColor);
}

.highlightSection{
    padding: 10px;
    background-color: #fff;
    box-shadow: 1px 1px 2px 1px steelblue;
}

.copyright{
    font-size: 9px;
    font-style: italic;
    text-align: center;
    padding: 10px;
}

ul li{
    line-height: 1.5em;
    font-size: 1.5vw;
}

#validation{
    text-align: center;
    font-size: 11px;
}

/* Psuedo-Classes */

a{
    text-decoration: underline;
    color: var(--blackColor)
}

a:link{
    text-decoration: underline;
    color: var(--blackColor);
    font-weight: bold;
}

a:visited{
    text-decoration: underline;
    color: darkblue;
}

a:hover{
    text-decoration: none;
    color: darkred;
    font-weight: bold;
}

a:active{
    text-decoration: underline wavy darkred;
    font-weight: bold;
}