body {
    background-color: hsl(124.48 40.61% 67.65%);
    font-family: "Roboto", 'Helvetica Neue', Helvetica, Arial, sans-serif; 
    font-weight: 400; 
    font-style: normal; 
margin: 0;
padding: 0;
}
h1 { font-family: “Roboto”,'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 900; font-style: normal; 
font-size:2.5rem;
margin: 1rem 0 3rem 0}

footer p {text-align: center;
border: 0px solid #000;
color: #F8FEFF;
background-color: #0B4A15;
margin: auto;
padding: 30px;
bottom: 0px;
height: 60px;
}

footer {
    background-color: #0B4A15;
    height: 6.25rem;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#logo {
    width: 4.375rem;
    height: auto;
}

header {
    background-color: #0B4A15;

    border: 0.0625rem solid #000;

    height: 3.125rem;

    margin: 0;

    padding: 1.875rem;

    color: #F8FEFF;



    

    font-size: 1rem;
    font-weight: 900;
    font-style: normal;
}

main {
    padding: 1rem;
}

nav {
    width: 20.6rem; 
}

nav ul {
    display: flex;
    justify-content: space-between;
    list-style: none;
    margin: 0 auto;
    padding: 0;
    width: 14rem;
}

nav ul li {
    height: 44px;
    line-height: 44px;
    flex: 1;
    text-align: center;
   
}

nav ul li a {
    display: block;
    height: 100%;
    width: 100%;
}

a {text-decoration: none;
    color: #0B4A15;}


header span {
    position: relative;
    top: -1.3125rem;
}

a:hover {
    color: #F8FEFF;
    background-color: transparent;
    text-decoration: none;
}

a:link {
    color:#0B4A15;
    background-color: transparent;
    text-decoration: transparent;
    
}

img {
    max-width: 100%; /* responsive image */
    height: auto;
}
 .thumbnails figure {
    width: 100%;
    max-width: 260px;
    margin: 2rem auto 3rem auto;
 }




 @media screen and (min-width: 900px) {

    /* Media Query: CSS for screens larger than 1024px wide ONLY goes here */

    h1 {
        font-size: 3.125rem;
    }

    header span {
        font-size: 3.125rem;
        position: relative;
        top: -0.5rem;
    }

    nav {
        margin: 0;
    }

    .thumbnails {
        display: flex;
        max-width: 80rem;
    }
    
    .thumbnails figure {
        max-width: calc(260px + 8rem); 
        margin: 1rem 1rem 1rem 1rem;
        padding: 1rem 1rem 1rem 1rem;
        
    }

    .wrapper {
        max-width: 60rem; /* 960px */
        margin: 1rem auto; /* 1rem space above/below, automatic
       left/right margins centers the div */
        background-color: hsl(124.48 40.61% 67.65%);

 }

 }