/*
    Author:     Philip Howard
    Date:       2026-04-13
    Course:     ITWP 1050
    Filename:   styles.css

    Stylesheet for project 2
*/

/*Setup*/
/*************************************************************/
/*Declare variables*/
:root {
    --blackColor: #000000;
}

/*Set up the Title Font webfont*/
@font-face {
    font-family: "Title Font";
    src: url(webfonts/AmaticSC-Bold.ttf);
    font-style: normal;
}
/*End setup*/
/*************************************************************/


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

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

/*Heading styles*/
/*h1 style*/
h1 {
    font-family: 'Title Font', 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(--blackColor);
    padding: 25px;
    border: 2px var(--blackColor) inset;
    box-shadow: 5px 10px 20px #336699 inset;
    font: small-caps 3vw sans-serif;
}

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

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

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

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

/*Unordered list style*/
ul li {
    line-height: 1.5em;
    font-size: 1.5vw;
}

/*Hyperlink styles*/
/*Anchor style*/
a {
    text-decoration: underline;
    color: var(--blackColor);
}
/*Link*/
a:link {
    text-decoration: underline;
    color: var(--blackColor);
    font-weight: bold;
}
/*Visited*/
a:visited {
    text-decoration: underline;
    color: darkblue;
}
/*Mouseover*/
a:hover {
    text-decoration: none;
    color: darkred;
    font-weight: bold;
}
/*In use*/
a:active {
    text-decoration: underline wavy darkred;
    font-weight: bold;
}
/*End general styles*/
/*************************************************************/


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

/*HighlightSection 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;
}

/*End class styles*/
/*************************************************************/


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

