/*Page css*/

.Artbody{
    background-image: url("/img/comppapertexture.jpg");
}

.ArtMainBody{
    position:relative;
    margin: auto;
    left: 0px;
    max-width: 80%;
    height: 700px;
    background-color: rgb(86, 102, 131);
    border: 4px darkcyan solid;
}

.ArtMainSidePanel{
    position:absolute;
    width: 150px;
    height: 680px;
    bottom: 10px;
    background-color: rgb(136, 142, 153);
    left: 10px;
    overflow-y: auto;
}

.ArtMainView{
    position:absolute;
    padding: 10px;
    height: 650px;
    bottom: 10px;
    background-color: rgb(63, 124, 143);
    left: 175px;
    border: 4px darkcyan solid;
    overflow: auto;
}


/* Melon's Gallery Maker! 0.0.2+ */

body {
    font-family: "Times New Roman", serif;
    background-color: #a8a68600;
    font-size: 1.1em;
}

a,
a:visited {
    color: #6138ff;
    text-decoration: underline;
}

a:hover {
    text-decoration: none;
}

nav {
    margin: 10px;
    clear: both;
}

footer {
    clear: both;
    font-size: 0.7em;
    padding-top: 30px;
}

/* Gallery Pages */

#photos {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

#photos figure {
    margin: 10px;
    max-width: min-content;
}

#photos img {
    border: 3px ridge #c3c3c3;
    /* Enable this for pixel art!! */
    /* image-rendering: pixelated; */
}

#photos img:hover {
    border-color: #3655aa;
}

#photos span {
    text-align: center;
    display: block;
}

#photos figcaption {
    padding: 10px 0px;
}

.page-links {
    text-align: center;
}

.page-links ul {
    padding: 0px 5px;
    margin: 10px 0px;
    display: inline-block;
}
.page-links li {
    list-style: none;
    display: inline;
    margin: 0px 3px;
}







/* Mobile Styling */

@media (max-width: 800px) {
    body {
        padding: 10px;
    }

    #photos figure {
        width: 95%;
        max-width: unset;
    }

    #photos img {
        width: 100%;
    }
}

/* Styling for JavaScript viewer (if enabled) */

#js-viewer {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.612);
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
}

#js-viewer img {
    max-width: 95%;
    max-height: 80%;
    height: auto;
    width: auto;
    border: 3px ridge #c3c3c3;
}

#js-viewer span {
    margin-top: 10px;
}

#js-viewer span button {
    border-radius: 0px;
    border: 2px outset #cecece;
    background-color: #e2e2e2;
    cursor: pointer;
}

#js-viewer span button:hover {
    border: 2px inset #cecece;
    background-color: #b8b8b8;
}
