body{
    font-family: "Roboto", 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    background-color: mediumpurple;
}
h1{
    font-family: "Roboto", 'Helvetica', Arial, sans-serif;
    font-weight: 900;
    font-style: normal;
}
footer p{
    text-align: center;
    background-color: darkslateblue;
    margin: 0;
    padding: 30px;
    color: #fff;
}
#logo{
width: 4.375rem;
height: auto;
bottom: auto;
}
header{
    background-color: #b2c5b5; /* fill */ /* rgba(255,255,255,0,5) => 0.5 semi-transparent color */ 
    border: 1px solid #000; /* stroke */ /* width of stroke, type of line, and color */
    height: 55px;
    padding: 20px; /* inset the image */
}
body{
font-family: "Roboto", sans-serif;
font-weight: 400;
font-style: normal;
margin: 0; /* add these two new lines */
padding: 0;
}
header{
    background-color: darkslateblue;
    height: 6.25rem;
    color: white;
    font-size: 1.125rem; /*add these three new lines */
    font-weight: 900;
    font-style: normal;
}
nav ul{
    list-style-type: none;
}

a {text-decoration: none;}

header span{
    position: relative;
    top: -2.125rem;
    display: inline-block;
    left: 0.25rem;
}
a:hover {
    color: #fff;
    background-color: transparent;
    text-decoration: none;
}

img {
    max-width: 100%; /* responsive images */
    height: auto;
}
nav {
    margin: 2rem auto; /* shorthand for 2rem top/bottom and zero right/left (both pairs are the same) */
    width: 22.8rem; /* change this value */
}
nav ul {
    display: flex; /* Make the \<li> go side by side */
    justify-content: space-between; /* Switch to Chromes web inspector to play with this */
}
nav ul li {
    height: 44px; /*minimum tappable size */
    line-height: 44px; /* leading: vertically centers text (when one line) */
    flex: 1; /* allows list item to grow within the flexbox */
}
nav ul li a {
    display: block; /* accept height and width settings */
    height: 100%; /* fill li area's height */
    width: 100%; /* fill li area's width */
}
main {
    padding: 1rem;
}
h1 {
    font-size: 2.5rem;
    margin: 1rem 0 3rem 0; /* Inspect these values and adjust as necessary */
}
.thumbnails figure {
    width: 100%;
    max-width: 260px;
    margin: 2rem auto 3rem auto;
}
footer {
    background-color: #868eb5;
    height: 6.25rem;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media screen and (min-width: 1024px) {
    /* Media Query: CSS for screens larger than 1024px wide ONLY goes here */
    h1 {
        font-size: 3.125rem;
        position: relative;
        top: -0.5rem;
    }
    .thumbnails {
        display: flex; /*thumbnails only go side by side on bigger screens */
        max-width: 60rem; /* prevent it from stretching forever, keeps figures closer together than too spread apart */
    }
    .thumbnails figure {
        max-width: calc(260px + 8rem); /*let the browser do the math: original size of jpeg + both sides of padding */
        margin: 2rem auto 3rem auto;
        border: 1px solid #444;
        padding: 2rem 4rem 3rem 4rem;
        box-shadow: 1px 5px 13px #ccc;

        body {
            background-color: #5d5c64;
        }
        .wrapper {
            max-width: 60rem;
            margin: 1rem auto;
            border: 1px solid #444;
            background-color: #fff;
        }
    }
} /* ======= Close the media query ======= */