/* simple reset rule to set page defaults*/
* {
    margin: 0;padding: 0;border: 0;
    box-sizing: border-box;
}

:root {
    font-size: 62.5%; /*16px *.625= 10px*/

    --color-bg1: #EEE5E9;
    --color-bg2: #EFC88B;
    --color-fn1: olive;
    --color-accent1: #cf5c36;
    font-family: 'Times New Roman', Times, serif;
}

body{
    background-color: var(--color-bg2);
    color: var(--color-fn1);
    font-size: 1.4rem;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    background-color: rgb(95, 158, 160);
    color: rgb(29, 28, 28);
    text-align:center;
}

h1{
    font-size: 4em;
    text-align: center;
    margin: 12px 0px 32px 0px;
    text-shadow: 0px 0px 4px #335;
    color: transparent;
    max-height: 100px;
}

h1 span{
    font-weight: normal;
}

.span1, .span2{
    width: 300px;
    height: 300px;
    margin: 20px;
    border: 2px solid #222;
    display: inline-block;
    
}

.thumbgal{
    box-shadow: 4px 4px 5px rgba(10, 10, 10, .5);
    margin: 40px auto;
    width: 80%;
    border: 3px solid rgb(10, 10, 10);
    overflow: hidden;

}

.thumbgal figure{
    float: left;
    margin: 20px;
}

.thumbgal img{
    max-height: 300px;
    border: 4px solid #222;
    border-width: 10px 10px 70px 10px;
}

.bigimage{
    display: flex;
}

.bigimage .one{
    width: 10%;
    float: left;

}

.bigimage .two{
    width: 80%;
}

.bigimage .three{
    width: 10%;
    float: right;

}

.centerimg{
    width: 100%;
}

.bigimage div{
    display: flex;
    align-content: center;
    align-items: center;

}

.arrows {
    display: inline-block;
    margin: auto;
    font-weight: bold;
    font-size: 150%;
    padding: 10px;
    border-radius: 25%;
    color: cadetblue;
    text-shadow:1px 1px 1px black;
    background-color: rgba(10, 10, 10, .5);
    box-shadow:1px 1px 3px black;
}

footer{
    display: flex;
    justify-content: center;
}
.home{
    min-width: 10%;
    min-height: 75px;
    text-align: center;
    max-height: 75px;
}

.home a{
    padding: 10px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 150%;
    display:inline-block;
    margin-top: 10px;
    color: cadetblue;
    text-shadow:1px 1px 1px black;
    background-color: rgba(10, 10, 10, .5);
    min-width: 100%;
    box-shadow:1px 1px 3px black;
}

a{
    text-decoration: none;
}
p{
    font-size: 200%;
    font-weight: bold;
}