body{
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;

    background-color: #ebdbcb;
    padding: 0; /*no inner white space*/
    margin: 0; /*white space outside the box*/
}


header{
    background: rgb(185,156,109);
background: radial-gradient(circle, rgba(185,156,109,1) 0%, rgba(47,53,71,1) 69%);/*fill*/
    /* rgba(255,255,255,0.5)=> semi-transparent color*/
    border: 1px solid #222632;/*stroke*/
    /* width of stroke, type of line, and color*/
    height: 55px;
    padding: 20px;  
    /*inset the image*/
    

}

header{
    background-color: #2f3547;
    padding:30px ;
    height: 100px;
    color: white;

    font-size: 50px;
    font-weight: 900;
    font-style: normal; 
}

nav ul {
    list-style-type: none;}

nav ul li{
    display: inline;
    margin: 16px;
    }

    a{
         text-decoration: none;
}

    main{margin-left: 36px;}

    h1
    {font-family: "Roboto",'Helvetica Neue', Helvetica, Arial,sans-serif;
        font-weight: 900; 
        font-style: normal;
        color: #6B5340;
    }
    
    .thumbnails{
        display: flex;/*this is called a flexbox*/  
    }

    
#logo{
    width: 70px;
    height: auto;
}

footer p{
    text-align: center;
    background: rgb(185,156,109);
background: radial-gradient(circle, rgba(185,156,109,1) 0%, rgba(47,53,71,1) 69%);
    border: 1px solid #222632;/*stroke*/
    /* width of stroke, type of line, and color*/
    height: 60px;
    padding: 30px;
    margin: 0;
    color: white;   
    /*inset the image*/
}


header span{
    position: relative;
    top: -21px;
}