/* 
Claire Muller
ITWP 1050
Project 2
*/

/* This is the root selector for creating global variables */
:root {
    --blackColor: #000000;
}

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

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

/* Styling for paragraphs */
p {
    text-indent: 1em;
    line-height: 1.5em;
    font-size: 1.5vw;
}

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

/* Styling the h2 element */
h2 {
    background: url(images/coloradomountains_bkgd.jpg) repeat center;
    color: white;
    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;
    font-size: 3vw;
}

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

/* Styling the h4 element */
h4 {
    font-variant: normal;
    padding: 5px;
    font-size: 1.75vw;
}

/* Styling the h5 element */
h5 {
    font-style: italic;
    color: darkslategray;
    font-size: 1vw;
}

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

/* Creating the stateflag class */
.stateflag {
    float: left;
    margin: 5px 15px 10px 0px;
    box-shadow: 0px 3px 3px 1px var(--blackColor);
}

/* Creating the highlightSection class */
.highlightSection {
    padding: 10px;
    background-color: white;
    box-shadow: 1px 1px 2px 1px steelblue;
}

/* Creating the copyright class */
.copyright {
    font-size: 9px;
    font-style: italic;
    text-align: center;
    padding: 10px;
    border-top: 1px medium var(--blackColor);
}

/* Styling unordered list and list items */
ul li {
    line-height: 1.5em;
    font-size: 1.5vw;
}

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

/* Creating pseudoclass a */
a {
    text-decoration: underline;
    color: var(--blackColor);
}

/* Creating pseudoclass for a:link */
a:link {
    text-decoration: underline;
    color: var(--blackColor);
    font-weight: bold;
}

/* Creating pseudoclass for a:visited */
a:visited {
    text-decoration: underline;
    color: darkblue;
}

/* Creating pseudoclass for a:hover */
a:hover {
    text-decoration: none;
    color: darkred;
    font-weight: bold;
}

/* Creating pseudoclass for a:active */
a:active {
    text-decoration: underline wavy darkred;
}