/****** BASICS ******/

    body {
        margin: 0;
        background-image: url(/backgrounds/destiny.jpg);
        background-color: rgb(112, 110, 110);
    }

    @font-face {
        font-family: fake receipt;
        src: url(/fonts/Fake\ Receipt.otf);
    }

/******* LAYOUT *******/

    .layout {
        border-top: 3.5px double #000;
        border-left: 3.5px double #000;
        border-right: 3.5px double #000;
        border-bottom: 3.5px double #000;
        margin: 0 auto;
        padding: 6px;
        width: 1000px;
        height: 750px;
        background-image: url(/backgrounds/pop.png);
        overflow: scroll;
    }

    .gallery {
        width: 900px;
        height: 700px;
        margin-left: 42px;
        padding: 6px;
       
    }

/****** HEADER *******/

    header {
        font-family: fake receipt;
        text-align: center;
    }

    header h1 {
        color: #000;
        font-size: 1em;
    }

    header p {
        font-size: 0.5em;
        font-family: Courier;
        color: #000;
    }

/****** NAV ******/

    nav {
        font-size: 0.5em;
        color: #000;
    }

    a {
        color: black;
    }

    a:hover {
        color: darkred;
    }

/******* MAIN CONTENT ********/

    h2 {
        font-size: 1.5em;
        font-family: fake receipt;
        color: palevioletred;
        margin-top: 50px;
        filter: drop-shadow(0px 1px black) drop-shadow(0 -1px black) drop-shadow(1px 0 black) drop-shadow(-1px 0 black);
    }

    figure {
        width: 200px;
        display: inline-block;
        margin: auto;
    }

    figure p {
        text-align: center;
        margin-left: 55px;
        font-size: 0.8em;
        font-family: Courier;
        color: black;
    }

    figure img {
        border: black 1px solid;
        width: 125px;
        height: 200px;
        margin-left: 70px;
    }

    hr {
        border-top: silver 2px ridge;
    }