*   {
    margin: 0; padding: 0; border: 0; box-sizing: border-box;
    }
body
    {
    background-image: linear-gradient(200deg, rgb(3, 250, 65), blue);
    min-height: 100vh;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    border: 8px solid black;
    }
#container
    {
    width: 80%; min-height: calc(100vh - 40px); margin: 10px auto;
    background-color: rgba(50,50 200,.7);
    border: 4px solid lightseagreen;
    }
header
    {
    background-color: rgb(50,50,200);
    width: 80%;
    padding: 25px 0px;
    margin: 20px auto;
    text-align: center;
    color: white;
    transform: skewX(5deg);
    outline: 2px solid greenyellow;
    outline-offset: -12px;
    border-radius: 6px;
    }
h1 + p
    {
    margin-top: 8px; text-align: right;
    position: relative; right: 100px; /* position relative to nudge an element*/
    }
#body
    {
    margin-top: 30px;
    margin-bottom: 0px;
    font-size: 25pt;
    color: white;
    
    }
footer  
    {
    text-align: left;
    color: rgb(12, 12, 12);
    border: 4px solid greenyellow;
    margin-top: 0px;
    background-color: lightskyblue;
    }

    /* thumbnail rules*/
#thumbnails
    {
    text-align: center;
    
    }
#thumbnails figure
    {
    width: 175px; height: 175px;
    border: 4px solid rgb(3, 250, 217);
    margin: 10px;
    display: inline-block;
    border-radius: 50%;
    
    }
#thumbnails a
    {
    display: block;
    width: 100%; height: 100%;
    border: 4px solid rgb(21, 255, 0);
    background-size: cover;
    border-radius: 50%;
    background-position: center;
    position: relative;
    transition: all 300ms ease-in-out;
    filter: grayscale(100%);
    }

#thumbnails a span 
    {
    font-size: 1.0 em;
    color: rgb(116, 248, 8);
    font-weight: bold;
    position: center;
    border: 1px solid rgb(52, 252, 3);
    border-radius: 10%;
    background-color: rgba(19, 19, 253, 0.5);
    transition: all 300ms ease-in-out;
    }
#thumbnails a:hover 
    {
    filter: grayscale(0%);
    }
#thumbnails a:hover span
    {
    color:rgb(55, 253, 5);
    background-color: rgb(19, 2, 66);
    border-radius: 10%;
    }


#thumbnails figure:nth-child(1) a
    {
    background-image: url(../photos/thumbnail1.jpg);
    }
    #thumbnails figure:nth-child(2) a
    {
    background-image: url(../photos/thumbnail2.jpg);
    }
    #thumbnails figure:nth-child(3) a
    {
    background-image: url(../photos/thumbnail3.jpg);
    }
    #thumbnails figure:nth-child(4) a
    {
    background-image: url(../photos/thumbnail4.jpg);
    }
    #thumbnails figure:nth-child(5) a
    {
    background-image: url(../photos/thumbnail5.jpg);
    }
    #thumbnails figure:nth-child(6) a
    {
    background-image: url(../photos/thumbnail6.jpg);
    }
    #thumbnails figure:nth-child(7) a
    {
    background-image: url(../photos/thumbnail7.jpg);
    }
    #thumbnails figure:nth-child(8) a
    {
    background-image: url(../photos/thumbnail8.jpg);
    }
    #thumbnails figure:nth-child(9) a
    {
    background-image: url(../photos/thumbnail9.jpg);
    }


/* big picture styles*/
/* big picture 2*/
.bigpicture , header
    {
    text-align: center;
    position: relative;
    }
.bigpicture img 
    {
    width: absolute;
    height: 100vh;
    
    }
.bigpicture figcaption
    {
    border: 4px solid rgb(252, 249, 249);
    width: 700px;
    height: min-height 100vh;
    position: absolute;
    top: 50px; left: 25%;
    background-color: hsla(120, 50%, 80%, .8);
    padding: 10px;
    text-align: center;
    line-height: 1.5; font-size: 15pt;
    }

a[role=prev], a[role=next], a[role=home] 
    {
    display: block; z-index: 10;
    width: 80px; height: 80px; 
    position: absolute; top: 100px;
    background-color: rgb(124, 252, 5); border-radius: 50%;
    }
a[role=prev]:hover, a[role=next]:hover, a[role=home]:hover
    {
    background-color: blueviolet;
    }
a[role=home]
    {
    left: 50%; transform: tranlateX(-50%); top: -20px;
    border-radius: 15px;
    width: 70px; height:70px;
    }

a[role=prev]   
    {
    left: 20px;
    }

a[role=next] 
    {
    right: 20px;
    }

a[role=prev] img, a[role=next] img, a[role=home] img 
    {
    width: 100%; height: 100%;
    }
.button1 
    {
    display: inline-flex; 
    background-color: rgb(41, 156, 250);
    color: black;
    font-weight: lighter;
    text-decoration: underline; 
    border-radius: 8px;
    padding: 5px; 
    width: 200px;
    text-align: center;
    margin: 5px;
    font-size: 20px;
    transition: all 300ms ease-in-out;
    position: absolute; right: 8px; bottom: 10px;
    }
.button1:hover 
    {
    background-color: rgb(12, 250, 3);
    color: black; 
    }