* {
    box-sizing: border-box;
}
body {
    font-size: 1em;
    margin: 20px;
    background-color: black !important;
    color: lightblue !important;
    /* font-family: 'Arimo', sans-serif; */
    /* font-family: "brushberry-sans-one", sans-serif; */

    font-family: 'Arimo', sans-serif;
    font-family: 'Playpen Sans', cursive;
    font-weight: 400;
    font-style: normal;
    Display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-areas:
        "header header header header"
        "aside main main main"
        "footer footer footer footer";
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
    min-width: 360px;   
}

header {
    grid-area: header;
}

aside {
    grid-area: aside;
}

main {
    grid-area: main
}

footer {
    grid-area: footer;
}

h1,
h2,
p {
    text-align: center;

}

h2 {
    font-size: 1em;
    font-weight: bold;
    background-color: salmon;
    margin-top:0;
}

img {
    width: 300px
}

aside {
    text-align: left;
}

main.photos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;


}

main.photos article {
    min-width: 150px;
    max-width: 400px;
    background-color: white;
    color: black;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
    margin: 20px;
    display: inline-block;
    border-radius: 10px;
    border: white
}

main.photos article:hover {
background-color: #cdb277;
color: white;
box-shadow: 12px 12px 2px 1px lightblue;
cursor: pointer;
}

main.photos article ul {
    list-style: none;
    margin: 0 1em 1em 1em;
    padding: 0 1em 1em 1em;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

main.photos article li {
    background-color: lightsteelblue;
    border-radius: 10px;
    padding: 0.5em;
    margin: 0.5em;
    font-size: smaller;
}

figure.polaroid {
    margin-bottom: 0;
}

width {
    width: 100%;
}

figure.polaroid figcaption {
    padding: 10px;
}