
/* Code for consistent html, body, and color schemes */
:root{


 /*   --main-black: #1f1f1f;
    --main-blue: #26C2E8;*/

  /*    --bright-white: #f1f1f1;
    --main-white: #d4d4d4;
    --main-gray: #999;
    --main-highlight: #f2791d;
    --alt-highlight: #ffb15e;

    highlight #cc1c13
    main white #bEBBBB
*/

/*    --main-black: #1E1E1E;
    --main-blue: #5bc0eb;
    --vocab-bkg: #1f1f8f;
    --bright-white: #bEBBBB;
    --main-white: #595457;
    --main-gray: #999;
    --main-highlight: #8C1C13;
    --alt-highlight: #8C0000;
*/

/* Lisa's colors */
--main-black: #1E1E1E;
--main-blue: #56CaE2;
--vocab-bkg: #3d2b56;
/*--vocab-bkg: #56CFE2; */
--bright-white: #f1f1f1;
--dull-white: #c1c1c1;
--main-gray: #999;
--main-highlight: #8C1C13;
--alt-highlight: #8C0000;
}

html, body {
    height: 100%;
    margin: 0;
    font-family: "Arial", sans-serif;
    font-size: 100%;
    background-color: var(--main-black);
    color: var(--main-white);
}

/* Shared header logic */
@media screen and (min-width:481px) {
    header {
        background-image: url("../img/fuji_large.jpg");
    }
}
@media screen and (max-width:480px) {
    header {
        background-image: url("../img/fuji_small.jpg");
    }
}

header {
    background-color: var(--main-black);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    line-height: 1.2;
    padding: 10vw 2em;
    text-align: center;
    text-shadow: 6px 6px 6px var(--main-black);
}

header h1 {
    font-size: 2.5em;
    font-weight: 500;
    text-align: center;
}

header h1 a {
    color: var(--bright-white);
}

#headerblur {
    background-color: rgb(0,0,0,0.6);
}

/* Code for consistent buttons.  Height and Width should be adjusted as needed.*/
button {
    width: 20em;
    height: 3em;
    color: var(--main-white);
    background-color: var(--main-highlight);
    padding: 8px;
    margin: auto;
    margin-top: 1em;
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    box-shadow: none;
    border: none;
}

button:hover{
    background-color: var(--alt-highlight);
}

button a, a:visited, a:hover, a:active {
    color: var(--main-white);
    text-decoration: none;
}

/* Visits links we don't need to have different colors when their visits */
a:link{ color: var(--bright-white);}
a:visited{ color: var(--bright-white);}