* {
    margin: 0;padding: 0;border: 0; box-sizing: border-box;
}

body {
    /* border: 4px solid red; */
    font-family: 'Julius Sans One', sans-serif;
    background-color: #345; 
    color:rgb(172, 158, 33);
    text-align: center;
    letter-spacing: .3em;
    min-width: 100%; 
}

header {
    background-color: rgb(1, 5, 35); 
    text-align: center;
    padding: 24px;
    height: 100px;
    color: rgb(172, 158, 33);
    font-size: xxx-large;
}

p {
    margin-top: 30px;
    letter-spacing: .2em;
}

a:visited, a:link, footer:visited, footer:link {
    color: rgb(172, 158, 33);
    text-decoration: none;
} 

#leftarrow {
    /* border: solid 4px red; */
    display: inline-block;
    height: 40px;
    width: 40px;
    background-image: url(/images/arrow-left.svg);
    background-repeat: no-repeat;
    position: absolute left;
}

#rightarrow {
    /* border: solid 4px red; */
    display: inline-block;
    text-align: center;
    height: 40px;
    width: 40px;
    background-image: url(/images/arrow-right.svg);
    background-repeat: no-repeat;
    background-position-x: x-start 100px;
}

#container {
    /* border: solid red 5px; */
    width: 100%;
    min-height: 400px;
    background-repeat: no-repeat;
    background-size: cover;
}

/* thumbnail rules */
#thumbnails {
    /* border: 4px solid red; */
    text-align: center;
    padding-top: 20px;    
}

#thumbnails figure {
    /* border: 4px solid green; */
    width: 100px; height: 445px;
    padding-top: 20px;
    overflow: hidden;
    border: 2px solid rgb(1, 5, 35);
    background-color: rgb(1,5,34);
    background-size: 100%;
    background-repeat: no-repeat;
    display: inline-block; 
}

#thumbnails a {
    /* border: 4px solid red; */
    display: block; 
    width: 300px; height: 100%; margin: auto;
    background-size: 100%;
    background-repeat: no-repeat;
    overflow: hidden;
    text-decoration: none;
    text-align: center;
    transition: 200ms ease-in-out;
    
    
    
} 

#thumbnails figure a span {
    /* border: solid 4px red; */
    display: block;
    color: black;
    font-weight: bold;
    font-family: rock salt;
    letter-spacing: .3em;
    font-size: 1em;
    position: relative;
    bottom: -140px; 
    text-align: center;
    transition: 500ms ease-in-out; 
}

#thumbnails a:hover {
    background-color: rgb(172, 158, 33)
}

#thumbnails a:hover span {
    color: rgb(172, 158, 33);
}

#thumbnails figure:nth-child(1) a {
    background-image: url(/photo_story_images/maple_thumb.jpg);
}

#thumbnails figure:nth-child(2) a {
    background-image:url(/photo_story_images/mia_thumb.jpg);
}

#thumbnails figure:nth-child(3) a {
    background-image: url(/photo_story_images/happy_ace_thumb.jpg);
}

#thumbnails figure:nth-child(4) a {
    background-image: url(/photo_story_images/winston_thumb.jpg);
}

#thumbnails figure:nth-child(5) a {
    background-image: url(/photo_story_images/gray_yak_thumb.jpg);
}

#thumbnails figure:nth-child(6) a {
    background-image: url(/photo_story_images/porcupine_thumb.jpg);
}

#thumbnails figure:nth-child(7) a {
    background-image: url(/photo_story_images/acecrane_thumb.jpg);
}

#thumbnails figure:nth-child(8) a {
    background-image: url(/photo_story_images/brown_yak_thumb.jpg);
}

footer {
    background-color: rgb(1, 5, 35); 
    color: rgb(172, 158, 33);
    font-size: xxx-large;
    text-align: center;
    padding: 25px;
    margin-top: 50px;
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 100px;
    overflow: hidden;
    text-decoration: none;
}

footer:link {
    text-decoration: none;
}

