/* gallery.css
    - for the gallery page, duh. */

.thumb
{
    display: flex;
    flex-flow: wrap;
}

.thumb-frame
{
    height: 6em;
    width: 8em;
    border: 3px solid black;
    border-radius: 2px;
    background-color: black;
    box-shadow: 0.5em 0.5em 0.5em black;
    display: flex;
    align-items: center;
    margin: 3em;
}

.thumb-frame img
{
    width: 100%;
    overflow: hidden;
}

.full
{
    position: fixed;
    /*
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    */
    width: 95%;
    box-shadow: 0 0 3em black;
    height: 95%;
    top: 2.5%;
    left: 2.5%;
    overflow: hidden;
    background-image: repeating-linear-gradient(45deg,rgba(255,255,255,0.5) 1px, rgba(255,255,255,0.5) 1px, rgba(0,0,0,0.5) 2px);
}

.full-content
{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
}

.full h1
{
    text-shadow: 0.1em 0.1em 0.2em black;
}

.full p
{
    margin: 0.5em 5%;
    text-shadow: 0.5em 0.5em 0.5em black;
}

.full-navi 
{
	width: 5%;
    text-align: center;
    position: fixed;
    top: 45%;
    height: 10%;
    background-color: black;
    display: flex;
    align-items: center;
    font-size: 2em;
}
.full-navi-left { left: 1%; }
.full-navi-right { right: 1%;}
.full-navi-close { top:1%; right: 1%;}
.full-navi p
{
    display: block;
    width:100%;
    text-align: center;
}

.full-image
{
    max-width: 95%;
    max-height: 95%;
}