/*Course: ITWP 1050
Author: Nicole Wozniak 
Assignment: Project 2 - Colorado Newsletter*/

/*global root varible*/
:root {
    --blackColor: #000000; 
}

/*web font*/
/*url(webfonts/AmaticSC-Regular.ttf) format('ttf');*/
@font-face {
    font-family: 'Title Font';
    src: url(webfonts/AmaticSC-Bold.ttf);
    font-style: normal;
}

/*body styling*/
body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: rgba(102,204,255,.4);
}

/*paragraph styling*/
p {
    text-indent: 1em;
    line-height: 1.5em;
    font-size: 1.5vw;
}

/*styling for all H tags*/
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) repeat center;
    color: #FFFFFF;
    text-shadow: 1px 1px 5px var(--blackColor);
    padding: 25px;
    border: 2px insert var(--blackColor);
    font-variant: small-caps;
}

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

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

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

/*floating image style*/
img {
    float: right;
    margin: 0 15px 15px;
    border: 1px solid var(--blackColor);
}

/*Stlying for each class*/
.stateflag {
    float: left;
    border: 1px inset #FFFFFF;
    margin: 5px 15px 10px 0;
    box-shadow: 0 3px 3px 2px var(--blackColor);
}

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

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

/*List syling*/
ul li {
    line-height: 1.5em;
    font-size: 1.5vw;
}

/*ID styles*/
#validation {
    text-align: center;
    font-size: 11px;
}

/*Psuedo classes - Hyperlink Stlyings*/
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;
}