/* Melon's Gallery Maker! 0.0.2+ */



body {
 background-image: url("quilty.webp"); /* The image used */
 background-color: #4b106e; /* Used if the image is unavailable */
 height: 500px; /* You must set a specified height */
 background-repeat:repeat; /* Do not repeat the image */
 



}
body {
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    filter: drop-shadow(3px 3px 0 rgb(212, 75, 17)) drop-shadow(-1px 1px 0 rgb(212, 75, 17)) drop-shadow(0 -1px 0 rgb(212, 75, 17)) drop-shadow(1px 0 rgb(212, 75, 17));
    background-color: #d6d6d6;
    font-size: 1.1em;
    padding: 30px;
    
    
    

a,
a:visited {
    color: #0eab91;
    text-decoration:none;
}

a:hover {
    text-decoration: none;
    color:white;
}

header,
body > section,
footer {
    padding: 20px;
    
}

nav {
    margin: 20px;
    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: #ffda00;
}

#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: normal;
}
.page-links li {
    list-style: none;
    display: normal;
    margin: 0px 3px;
    
}

/* Mobile Styling */

@media (max-width: 800px) {
    body {
        padding: 10px;
        
    }

    #photos figure {
        width: 90%;
        max-width: 100%;
    }

    #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: 60%;
    max-height: 60%;
    height: auto;
    width: auto;
    border: 3px ridge #c3c3c3;
}

#js-viewer span {
    margin-top: 10px;
}

#js-viewer span button {
    border-radius: 0px;
    border: 8px outset #20b091;
    background-color: #20b091;
    cursor: pointer;
     font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    filter: drop-shadow(3px 3px 0 rgb(212, 75, 17)) drop-shadow(-1px 1px 0 rgb(212, 75, 17)) drop-shadow(0 -1px 0 rgb(212, 75, 17)) drop-shadow(1px 0 rgb(212, 75, 17));
}

#js-viewer span button:hover {
    border: 2px inset #20b091;
    background-color: #20b091;
     font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    filter: drop-shadow(3px 3px 0 rgb(212, 75, 17)) drop-shadow(-1px 1px 0 rgb(212, 75, 17)) drop-shadow(0 -1px 0 rgb(212, 75, 17)) drop-shadow(1px 0 rgb(212, 75, 17));
}
