/* CSS Document for Project 2
Author: Darrcelle Jackson
Course: ITWP 1050
File: styles.css */

/* sets background color for the html document */
:root {
    --blackColor: #000000;
}

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

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

/* sets the paragraphs text indent, line height and font size */
p {
    text-indent: 1em;
    line-height: 1.5em;
    font-size: 1.5vw;
}

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

/* styles the h2 element */
h2 {
    background: url('images/coloradomountains_bkgd.jpg') repeat center;
    color: white;
    text-shadow: 1px 1px 5px #000000;
    padding: 25px;
    border: 2px #000000 inset;
    font-variant: small-caps;
    box-shadow: 5px 10px 20px #336699 inset;
    font: 3vw;
}

/* styles the h3 element */
h3 {
    font-variant: normal;
    padding: 5px;
    font-size: 2vw;
    border-bottom: 2px solid #000000;
}

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

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

/* styles the image element */
img {
    float: right;
    margin: 0 15px 15px 15px;
    border: 1px solid #000000;
}

/* Styles the element(s) with the class name "stateflag" */
.stateflag {
    float: left;
    border: 1px inset white;
    margin: 5px 15px 10px 0;
    box-shadow: 0px 3px 3px 1px #000000;
}

/* Styles the element(s) with the class name "highlightSection" */
.highlightSection {
    padding: 10px;
    background-color: white;
    box-shadow: 1px 1px 2px 1px steelblue;
}

/* Styles the element(s) with the class name "copyright" */
.copyright {
    font-size: 9px;
    font-style: italic;
    text-align: center;
    padding: 10px;
}

/* styles the unordered list and its items = "lists" */
ul li {
    line-height: 1.5em;
    font-size: 1.5vw;
}

/* centers and sets the font size for the valiation */
#validation {
    text-align: center;
    font-size: 11px;
}

/* sets the text decoration and color for the psuedo-class = a */
a {
    text-decoration: underline;
    color: #000000;
}

/* visited link */
a:link {
    text-decoration: underline;
    color: #000000;
    font-weight: bold;
}

/* unvisited link */
a:visited {
    text-decoration: underline;
    color: darkBlue;
}

/* mouse over link*/
a:hover {
    text-decoration: none;
    color: DarkRed;
    font-weight: bold;
}

/* selected link */
a:active {
    text-decoration: underline wavy DarkRed;
    font-weight: bold;
}